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

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

  file { '/usr/local/bin/pdk':
James T. Lee's avatar
James T. Lee committed
13
    content => epp('nest/scripts/pdk.sh.epp'),
14
  }
15
}