scripts.pp 211 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
class nest::base::scripts {
  File {
    mode  => '0755',
    owner => 'root',
    group => 'root',
  }

  file { '/usr/local/sbin/nest-install':
    source => 'puppet:///modules/nest/scripts/install.sh',
  }
}