Changeset 181


Ignore:
Timestamp:
May 11, 2009, 7:39:33 PM (15 years ago)
Author:
sebas
Message:

agrege peon para probar el escritorio + una funcion para crear enlace symbolico

Location:
trunk/puppet/manifests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/puppet/manifests/common/common.pp

    r164 r181  
    1515}
    1616
     17    define create::symblink ( $target, $linkname ) {
     18    exec { "createsymblink":
     19        command => "ln -s $target $linkname",
     20        path => "/bin",
     21        creates => "$linkname",
     22         }
     23    }
     24
     25
  • trunk/puppet/manifests/site.pp

    r170 r181  
    1414
    1515# tell puppet on which client to run the class
    16 #node walsh {
    17 #    include test_class
    18 #}
     16node peon {
     17    include test_class
     18    include estacion-de-trabajo
     19}
    1920node walsh {
    2021    include test_class
Note: See TracChangeset for help on using the changeset viewer.