Puppet Class: acli::config
- Defined in:
- manifests/config.pp
Overview
Class: acli::config
This class configures acli. It should not be called directly.
Authors
-
Justin Lambert <jlambert@letsevenup.com>
Copyright
Copyright 2014 EvenUp.
15 16 17 18 19 20 21 22 23 24 25 |
# File 'manifests/config.pp', line 15
class acli::config {
file { '/opt/acli/atlassian.sh':
ensure => 'file',
mode => '0550',
owner => 'root',
group => 'root',
content => template("${module_name}/atlassian.sh.erb"),
}
}
|