Changes between Version 5 and Version 6 of ActulizacionServidorRedLocalMultiServiciosAUbuntuLucid


Ignore:
Timestamp:
May 10, 2010, 7:01:02 PM (14 years ago)
Author:
sebas@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ActulizacionServidorRedLocalMultiServiciosAUbuntuLucid

    v5 v6  
    3636 * el resto de la recetas puppet para el nodo.
    3737
     38{{{
     39node pocho {
    3840
    39  
     41    include basenode
     42    include basenode::admin
     43    include basenode::admin::cta::sedenacional
    4044
     45    dnsmasq::config { 'pocho':
     46        dhcp_authoritative => 'yes',
     47        dhcp_range         => '10.0.30.1,10.0.30.254,255.255.0.0,2h',
     48        dhcp_gw            => '10.0.10.1',
     49        dhcp_nameservers   => '10.0.99.2',
     50        dhcp_script        => '/usr/local/sbin/dnsmasq-genhostname.sh',
     51        dhcp_hostsfile     => '/etc/dnsmasq.hostsfile',
     52        addn_hosts         => '/etc/hosts.dnsmasq',
     53        domain             => 'sede.org.ar',
     54        dhcp_boot          => '/pxelinux.0,pocho,10.0.99.2',
     55        tftp_root          => '/',
     56        log_queries        => 'yes',
     57        log_dhcp           => 'yes'
     58    }
     59
     60    network::interface { "eth0" :
     61        address => "10.0.99.2",
     62        broadcast => "10.0.255.255",
     63        netmask => "255.255.0.0",
     64        parameters => "gateway 10.0.10.1\n        dns-search sede.org.ar\n        dns-nameservers 10.0.10.1",
     65    }
     66
     67    include debproxy::server
     68    include di_netboot_assistant
     69    include ltsp::buildclient
     70    ltsp::client::debproxy::activateclient { dist:
     71     debproxyhost => "debproxy-ubuntu",
     72    }
     73    include ltsp::client::plymouth::logocta
     74    include ltsp::client::localgen::es_AR
     75    include ltsp::client::ldm::carpani_cta
     76
     77   include ltsp::client::installpackages
     78    include ltsp::client::checkoutinroot
     79
     80
     81    include login_themes::plymouth::logocta
     82    include escritorio::basico
     83    include escritorio::fondos::cta
     84    include escritorio::gnome-theme::xp
     85    include escritorio::tb
     86    include escritorio::autostart-off
     87    include escritorio::iconos
     88    include escritorio::oo3conf::fileformat
     89    include escritorio::vb::ose
     90
     91}
     92}}}
     93
     94