Created
December 13, 2012 04:22
-
-
Save scottslowe/4274021 to your computer and use it in GitHub Desktop.
Simplified snippet from accounts::config to manage files in /etc/skel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class accounts::config { | |
# Place a file in /etc/profile.d to manage the prompt | |
file { '/etc/profile.d/prompt.sh': | |
ensure => 'present', | |
source => 'puppet:///modules/config/profiled-prompt.sh', | |
mode => '0644', | |
owner => '0', | |
group => '0', | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment