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