Changeset 197 for trunk/puppet/manifests


Ignore:
Timestamp:
May 18, 2009, 11:00:32 AM (15 years ago)
Author:
sebas
Message:

permisos sobre los homes de usuario a 700 + fondos de pantalla CTA

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/puppet/manifests/classes/estacion-de-trabajo.pp

    r195 r197  
    4444#        }
    4545
    46 
     46## creation of home directories with permission 700 (cannot be read by others)
     47 package { [ "adduser" ]: ensure => installed }
     48    line { changehomedirpermissiondefault:
     49    file => "/etc/adduser.conf",
     50    line => "DIR_MODE=0755",
     51    ensure => absent,
     52    require => Package["adduser"]
     53    }
     54    line { homedirpermissionothersout:
     55    file => "/etc/adduser.conf",
     56    line => "DIR_MODE=0700",
     57    ensure => present,
     58    require => Package["adduser"]
     59    }
    4760
    4861
     
    5770
    5871    include estacion-de-trabajo::thunderbird::extensions
     72
     73    include estacion-de-trabajo::escritorio::fondos::cta
    5974
    6075#    define create::symblink ( $target, $linkname ) {
     
    108123    }
    109124}
     125
     126class estacion-de-trabajo::escritorio::fondos::cta {
     127
     128    svn::checkout { escritorio-fondos-cta:
     129       repository => "https://svn.redcta.org.ar/proyectos/redcta/trunk/escritorio-fondos-cta",
     130       local_path => "/dist/svn-redcta",
     131       local_name => "escritorio-fondos-cta"
     132    }
     133
     134#    file  { "/usr/share/thunderbird/isp/example-isp.rdf":
     135#       ensure => "/dist/svn-redcta/thunderbid-extensions/agregados/sources/isp/example-isp.rdf"
     136#    }
     137
     138#    file { "/usr/lib/thunderbird/extensions/syncmlplugin@funambol.com":
     139#       ensure => "/dist/svn-redcta/thunderbid-extensions/funambol/dist"
     140#    }
     141}
Note: See TracChangeset for help on using the changeset viewer.