1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# File 'manifests/config.pp', line 1
class abiquo::config {
file { [ '/opt/abiquo', '/opt/abiquo/config' ]:
ensure => directory,
owner => 'root',
mode => '0755',
before => Yumrepo['Abiquo-Base']
}
concat { '/opt/abiquo/config/abiquo.properties':
owner => 'root',
mode => '0755',
notify => Service['abiquo-tomcat'],
require => File['/opt/abiquo/config']
}
abiquo::properties_register { 'properties header':
content => template('abiquo/properties.header.erb'),
order => '01'
}
}
|