Puppet Class: aix_tidy::dot_profile

Defined in:
manifests/dot_profile.pp

Overview

Aix_tidy::Dot_profile

Install a default security profile



4
5
6
7
8
9
10
11
12
# File 'manifests/dot_profile.pp', line 4

class aix_tidy::dot_profile {
  file { "/etc/security/.profile":
    ensure => file,
    owner  => "root",
    group  => "security",
    mode   => "0755",
    source => "puppet:///modules/aix_tidy/dot_profile",
  }
}