Update getPicture.conf
[clearscm.git] / puppet / client.pp
1 # RDE Puppet Client config
2
3 # This subclass defines the configuration for RDE Clients
4 class rde::client {
5   # Remove any NIS groups
6   file_line { 'no_NIS_groups':
7     ensure            => 'absent',
8     path              => '/etc/passwd',
9     line              => '# Remove +',
10     match             => '^\+@.*',
11     multiple          => 'true',
12     match_for_absence => 'true',
13     replace           => 'false',
14     tag               => 'nis',
15   }
16
17   file_line { 'all_users':
18     path   => '/etc/passwd',
19     ensure => 'present',
20     line   => '+',
21     tag     => 'nis',
22   }
23 }