diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/base_installation/manifests/services.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/base_installation/manifests/services.pp b/modules/base_installation/manifests/services.pp index 57fbfc3..1659f97 100644 --- a/modules/base_installation/manifests/services.pp +++ b/modules/base_installation/manifests/services.pp | |||
@@ -1,6 +1,6 @@ | |||
1 | class base_installation::services inherits base_installation { | 1 | class base_installation::services inherits base_installation { |
2 | 2 | ||
3 | if (empty($facts["in_chroot"])) { | 3 | if $facts["in_chroot"] == undef or empty($facts["in_chroot"]) { |
4 | $ensure = "running" | 4 | $ensure = "running" |
5 | } else { | 5 | } else { |
6 | $ensure = undef | 6 | $ensure = undef |