diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2021-11-06 10:35:30 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2021-11-06 10:35:30 -0300 |
commit | a0e18b0bc74a8628dbe07a1be87f099281cdbf3f (patch) | |
tree | c612689a07ce5576ea9972f9f7c0c288cb3b25af | |
parent | d1533e314ca98f3e19d2c24bac149de5d61d96b4 (diff) | |
download | puppet-backup-a0e18b0bc74a8628dbe07a1be87f099281cdbf3f.tar.gz puppet-backup-a0e18b0bc74a8628dbe07a1be87f099281cdbf3f.tar.bz2 |
Fix: python-gobject-2 dependency
-rw-r--r-- | manifests/init.pp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index fee575c..43c3773 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -52,8 +52,9 @@ class backup( # See http://www.rfc3092.net/2013/09/missing-modules-for-paramiko-and-gio-in-duplicity-foo/ package { "python-gobject-2": ensure => $::lsbdistcodename ? { - 'squeeze' => absent, - default => present, + 'stretch' => present, + 'buster' => absent, + default => absent, }, } |