Last change
on this file since 649 was
605,
checked in by sebas@…, 15 years ago
|
fue puesto en el modulo escritorio
|
File size:
529 bytes
|
Rev | Line | |
---|
[605] | 1 | ## en migracion al modulo escritorio |
---|
[159] | 2 | class estacion-de-trabajo { |
---|
[180] | 3 | |
---|
[197] | 4 | ## creation of home directories with permission 700 (cannot be read by others) |
---|
| 5 | package { [ "adduser" ]: ensure => installed } |
---|
| 6 | line { changehomedirpermissiondefault: |
---|
| 7 | file => "/etc/adduser.conf", |
---|
| 8 | line => "DIR_MODE=0755", |
---|
| 9 | ensure => absent, |
---|
[433] | 10 | require => Package["adduser"], |
---|
[197] | 11 | } |
---|
| 12 | line { homedirpermissionothersout: |
---|
| 13 | file => "/etc/adduser.conf", |
---|
| 14 | line => "DIR_MODE=0700", |
---|
| 15 | ensure => present, |
---|
[433] | 16 | require => Package["adduser"], |
---|
[197] | 17 | } |
---|
[182] | 18 | |
---|
[184] | 19 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.