aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystem
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2018-06-21 16:14:26 -0300
committerSilvio Rhatto <rhatto@riseup.net>2018-06-21 16:14:26 -0300
commit4d278db5b1ddf06e31cfbcba92da9fe0ca872505 (patch)
tree6249bcd4295f6e69c56a244a05e8aa037df59508 /manifests/subsystem
parentd2601b24cce924960595480d7478639f058f581c (diff)
downloadpuppet-nodo-4d278db5b1ddf06e31cfbcba92da9fe0ca872505.tar.gz
puppet-nodo-4d278db5b1ddf06e31cfbcba92da9fe0ca872505.tar.bz2
Fix apt-transport-https dependency at nodo::subsystem::apt::repo
Diffstat (limited to 'manifests/subsystem')
-rw-r--r--manifests/subsystem/apt/repo.pp4
1 files changed, 1 insertions, 3 deletions
diff --git a/manifests/subsystem/apt/repo.pp b/manifests/subsystem/apt/repo.pp
index 01210e7..ca8f5e1 100644
--- a/manifests/subsystem/apt/repo.pp
+++ b/manifests/subsystem/apt/repo.pp
@@ -3,8 +3,6 @@ define nodo::subsystem::apt::repo(
$key_source,
$ensure = present,
) {
- include nodo::subsystem::apt
-
file { "/etc/apt/trusted.gpg.d/${name}.gpg":
ensure => $ensure,
owner => "root",
@@ -20,7 +18,7 @@ define nodo::subsystem::apt::repo(
group => "root",
mode => "0644",
content => "${definition}\n",
- require => [ File["/etc/apt/trusted.gpg.d/${name}.gpg"], Package['http-transport-https'] ],
+ require => [ File["/etc/apt/trusted.gpg.d/${name}.gpg"], Package['apt-transport-https'] ],
notify => Exec["apt-repo-auto-update-${name}"],
}