summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2018-01-08 15:26:28 +0000
committerintrigeri <intrigeri@boum.org>2018-01-08 15:26:28 +0000
commit9ae9f6f45c65e3a3b83cdad523510f7df579d598 (patch)
tree64bcfc02f9437e176aeb7d6ce29eb573f60bc32a
parent0f926d725b3d92d4f052c776d578c7de6eca3a88 (diff)
parent5f9ed88471a2aff0db4a90ba4dd7902c07e6a058 (diff)
Merge branch 'puppet4_compat' into 'master'
puppet 4 compat: mark integer as string See merge request shared-puppet-modules-group/apt!64
-rw-r--r--manifests/reboot_required_notify.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/reboot_required_notify.pp b/manifests/reboot_required_notify.pp
index 3463bb4..a538c9a 100644
--- a/manifests/reboot_required_notify.pp
+++ b/manifests/reboot_required_notify.pp
@@ -1,6 +1,6 @@
class apt::reboot_required_notify {
- if versioncmp($::operatingsystemmajrelease, 8) >= 0 {
+ if versioncmp($::operatingsystemmajrelease, '8') >= 0 {
class { 'apt::reboot_required_notify::jessie': }
# Clean up systems that were upgraded from Wheezy or earlier:
class { 'apt::reboot_required_notify::wheezy': ensure => absent }