aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystem/local.pp
blob: d6b7587ec4b032f761326498f2e3716b2e91ad11 (plain)
1
2
3
4
5
6
7
8
9
10
class nodo::subsystem::local {
  file { "/etc/rc.local":
    source  => [ "puppet:///modules/site_nodo/etc/rc.local.${::hostname}",
                 "puppet:///modules/nodo/etc/rc.local" ],
    owner   => "root",
    group   => "root",
    mode    => '0755',
    ensure  => present,
  }
}