fix for broken dependency when installing via git
This commit is contained in:
parent
0d54db18cc
commit
4332ff8eaa
1 changed files with 12 additions and 5 deletions
|
@ -9,16 +9,23 @@ class icingaweb2::install {
|
|||
ensure => $::icingaweb2::pkg_ensure,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if $::icingaweb2::pkg_deps {
|
||||
package { $::icingaweb2::pkg_deps:
|
||||
ensure => $::icingaweb2::pkg_ensure,
|
||||
before => Package[$::icingaweb2::pkg_list],
|
||||
if $::icingaweb2::pkg_deps {
|
||||
package { $::icingaweb2::pkg_deps:
|
||||
ensure => $::icingaweb2::pkg_ensure,
|
||||
before => Package[$::icingaweb2::pkg_list],
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if $::icingaweb2::install_method == 'git' {
|
||||
if $::icingaweb2::pkg_deps {
|
||||
package { $::icingaweb2::pkg_deps:
|
||||
ensure => $::icingaweb2::pkg_ensure,
|
||||
before => Vcsrepo['icingaweb2'],
|
||||
}
|
||||
}
|
||||
|
||||
vcsrepo { 'icingaweb2':
|
||||
ensure => present,
|
||||
path => $::icingaweb2::web_root,
|
||||
|
|
Loading…
Reference in a new issue