Set allow_virtual => true for packages

By default, the Puppet 3.x package resource does not support virtual
packages (i.e. packages which use Provides: for other names). Setting
allow_virtual => true fixes this for all package resources.

Change-Id: Ib53caa107bb18fcbf92e605eced67417c67d1b34
This commit is contained in:
Javier Pena
2016-06-30 17:47:34 +02:00
committed by Javier Peña
parent c842a6bcd7
commit 5bda750f93
3 changed files with 3 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
stage { "init": before => Stage["main"] }
Exec { timeout => hiera('DEFAULT_EXEC_TIMEOUT') }
Package { allow_virtual => true }
class {'::packstack::prereqs':
stage => init,

View File

@@ -1,6 +1,7 @@
stage { "init": before => Stage["main"] }
Exec { timeout => hiera('DEFAULT_EXEC_TIMEOUT') }
Package { allow_virtual => true }
class {'::packstack::prereqs':
stage => init,

View File

@@ -1,6 +1,7 @@
stage { "init": before => Stage["main"] }
Exec { timeout => hiera('DEFAULT_EXEC_TIMEOUT') }
Package { allow_virtual => true }
class {'::packstack::prereqs':
stage => init,