aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2024-07-22 11:30:45 -0300
committerSilvio Rhatto <rhatto@riseup.net>2024-07-22 11:30:45 -0300
commitf09c52b8999b349f5ad3f5c4176e8ee0d00e2540 (patch)
tree2619e902759af3e3c9ed27c0022156b099ace512
parent57675537f2f622b3b0cb56551f4dfcbe2df0edd3 (diff)
downloadpuppet-nodo-f09c52b8999b349f5ad3f5c4176e8ee0d00e2540.tar.gz
puppet-nodo-f09c52b8999b349f5ad3f5c4176e8ee0d00e2540.tar.bz2
Fix: apt-transport-https no longer needed
-rw-r--r--manifests/subsystem/apt.pp3
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/subsystem/apt.pp b/manifests/subsystem/apt.pp
index 28db591..d2d531d 100644
--- a/manifests/subsystem/apt.pp
+++ b/manifests/subsystem/apt.pp
@@ -14,8 +14,9 @@ class nodo::subsystem::apt(
default => 'enabled',
}
) {
+ # This one is no longer necessary
package { 'apt-transport-https':
- ensure => installed,
+ ensure => absent,
}
# See https://www.cyberciti.biz/faq/howto-use-apt-get-with-ipv6-or-ipv4-transport-on-ubuntu-debian/