Puppet Class: classroom_legacy::master::lab_files
- Defined in:
- manifests/master/lab_files.pp
Overview
Create link for the cached wordpress tarball
2 3 4 5 6 7 |
# File 'manifests/master/lab_files.pp', line 2
class classroom_legacy::master::lab_files {
file { '/opt/puppetlabs/server/data/packages/public/wordpress-3.8.tar.gz':
ensure => link,
target => '/usr/src/wordpress/wordpress-3.8.tar.gz',
}
}
|