cellinfo
/
puppet-root
Archived
2
0
Fork 0
This repository has been archived on 2020-11-04. You can view files and clone it, but cannot push or open issues or pull requests.
puppet-root/manifests/config.pp

23 lines
407 B
Puppet
Raw Normal View History

2016-11-28 11:01:55 +01:00
# == Private class: root::configuration
#
class root::configuration {
File {
owner => root,
group => root,
mode => 600,
}
# Set .profile and bashrc files
file { $root::profile_path:
ensure => present,
content => template($root::profile_content),
}
file { $root::bashrc_path:
ensure => present,
content => template($root::bashrc_content),
}
} # Private class: root::configuration