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
|
Line | |
---|
1 | ## en migracion al modulo escritorio |
---|
2 | class estacion-de-trabajo { |
---|
3 | |
---|
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, |
---|
10 | require => Package["adduser"], |
---|
11 | } |
---|
12 | line { homedirpermissionothersout: |
---|
13 | file => "/etc/adduser.conf", |
---|
14 | line => "DIR_MODE=0700", |
---|
15 | ensure => present, |
---|
16 | require => Package["adduser"], |
---|
17 | } |
---|
18 | |
---|
19 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.