icinga2/.vagrant-puppet/modules/icinga-web/manifests/init.pp

36 lines
1.1 KiB
Puppet
Raw Normal View History

2013-10-15 09:36:29 +02:00
class icinga-web {
include icinga-rpm-snapshot
2013-10-15 10:59:32 +02:00
include icinga2-ido-mysql
2013-10-16 08:25:11 +02:00
include mysql
2013-10-15 09:36:29 +02:00
php::extension { ['php-mysql']:
require => [ Class['mysql'] ]
}
package { 'icinga-web':
ensure => installed,
require => Class['icinga-rpm-snapshot'],
2013-10-15 10:12:30 +02:00
notify => Service['apache']
2013-10-15 09:36:29 +02:00
}
2013-10-16 21:11:49 +02:00
package { 'icinga-web-mysql':
ensure => installed,
require => Class['icinga-rpm-snapshot'],
notify => Service['apache']
}
2013-10-15 09:36:29 +02:00
exec { 'create-mysql-icinga-web-db':
2013-10-15 10:12:30 +02:00
path => '/bin:/usr/bin:/sbin:/usr/sbin',
unless => 'mysql -uicinga_web -picinga_web icinga_web',
2013-10-16 21:11:49 +02:00
command => 'mysql -uroot -e "CREATE DATABASE icinga_web; GRANT ALL ON icinga_web.* TO icinga_web@localhost IDENTIFIED BY \'icinga_web\';"',
2013-10-15 09:36:29 +02:00
require => Service['mysqld']
}
exec { 'populate-icinga-web-mysql-db':
2013-10-15 10:12:30 +02:00
path => '/bin:/usr/bin:/sbin:/usr/sbin',
unless => 'mysql -uicinga_web -picinga_web icinga_web -e "SELECT * FROM nsm_user;" &> /dev/null',
2013-10-15 09:36:29 +02:00
command => 'mysql -uicinga_web -picinga_web icinga_web < /usr/share/icinga-web/etc/schema/mysql.sql',
require => [ Package['icinga-web'], Exec['create-mysql-icinga-web-db'] ]
}
2013-10-16 08:25:11 +02:00
}