diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-07-14 17:08:26 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-07-14 17:08:26 -0300 |
commit | 57675537f2f622b3b0cb56551f4dfcbe2df0edd3 (patch) | |
tree | ec9c26b3b97f000569d0a25293bc1d9aa3088278 | |
parent | cae876174a608f38565f40e2339bb1013616fa7c (diff) | |
download | puppet-nodo-57675537f2f622b3b0cb56551f4dfcbe2df0edd3.tar.gz puppet-nodo-57675537f2f622b3b0cb56551f4dfcbe2df0edd3.tar.bz2 |
Ensure every node are ready for offline operation by installing apt-offline
-rw-r--r-- | manifests/utils.pp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/manifests/utils.pp b/manifests/utils.pp index bd8f692..5847438 100644 --- a/manifests/utils.pp +++ b/manifests/utils.pp @@ -1,5 +1,12 @@ # Common utilities class nodo::utils inherits nodo::utils::base { + # Ensure every node are ready for offline operation + package { [ + 'apt-offline', + ]: + ensure => present, + } + package { [ 'pv', 'gcp', |