From: Silvio Rhatto Date: Tue, 20 Dec 2022 16:30:16 +0000 (-0300) Subject: Feat: adds nodo::utils::network::tor X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=93ce17804c95770c1193e31ef0b9fecb2cbeb679;p=puppet-nodo.git Feat: adds nodo::utils::network::tor --- diff --git a/files/etc/apt/trusted.gpg.d/torproject.org.gpg b/files/etc/apt/trusted.gpg.d/torproject.org.gpg new file mode 100644 index 0000000..7614b20 Binary files /dev/null and b/files/etc/apt/trusted.gpg.d/torproject.org.gpg differ diff --git a/manifests/utils/network/tor.pp b/manifests/utils/network/tor.pp new file mode 100644 index 0000000..88c29ce --- /dev/null +++ b/manifests/utils/network/tor.pp @@ -0,0 +1,13 @@ +# This class currently only manages the repository definition and key +# Use the "tor" or "onion" modules to manage package installation and service configuration +class nodo::utils::network::tor { + nodo::subsystem::apt::repo { 'torproject.org': + definition => "deb [signed-by=/etc/apt/trusted.gpg.d/torproject.org.gpg] https://deb.torproject.org/torproject.org ${::lsbdistcodename} main", + key_source => 'puppet:///modules/nodo/etc/apt/trusted.gpg.d/torproject.org.gpg', + } + + package { "deb.torproject.org-keyring": + ensure => present, + require => Nodo::Subsystem::Apt::Repo['torproject.org'], + } +}