Install icingacli and bash completion in Vagrant VM

fixes #6264
refs #5803
This commit is contained in:
Michael Friedrich 2014-05-23 15:26:46 +02:00
parent f07776890e
commit 9a8965510a
1 changed files with 24 additions and 0 deletions

View File

@ -799,3 +799,27 @@ file { '/etc/icingaweb/dashboard/dashboard.ini':
# pear::package { 'deepend/Mockery':
# channel => 'pear.survivethedeepend.com'
# }
# icingacli
file { '/usr/local/bin/icingacli':
ensure => 'link',
target => '/vagrant/bin/icingacli',
owner => 'apache',
group => 'apache',
require => [ File['/etc/icingaweb'], File['/etc/bash_completion.d/icingacli'] ]
}
exec { 'install bash-completion':
command => 'yum -d 0 -e 0 -y --enablerepo=epel install bash-completion',
unless => 'rpm -qa | grep bash-completion',
require => Class['epel']
}
file { '/etc/bash_completion.d/icingacli':
source => 'puppet:////vagrant/etc/bash_completion.d/icingacli',
owner => 'root',
group => 'root',
mode => 755,
require => Exec['install bash-completion']
}