From ea49c4f4c6c3cf2dcb3d197edc6b6749a7821abb Mon Sep 17 00:00:00 2001 From: "Wile E. Coyote" Date: Mon, 12 Feb 2018 09:29:15 +0000 Subject: [PATCH] Add Rhizomatica Jessie and Irontec REPOs --- modules/rhizo_base/manifests/apt.pp | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/modules/rhizo_base/manifests/apt.pp b/modules/rhizo_base/manifests/apt.pp index 969496c..7bfd98a 100644 --- a/modules/rhizo_base/manifests/apt.pp +++ b/modules/rhizo_base/manifests/apt.pp @@ -39,7 +39,13 @@ class rhizo_base::apt::common { include_src => false, require => File['/etc/apt/apt.conf.d/90unsigned'], } - + apt::source { 'rhizo-jessie': + location => 'http://repo.rhizomatica.org/debian/', + release => 'jessie', + repos => 'main', + include_src => false, + require => File['/etc/apt/apt.conf.d/90unsigned'], + } } class rhizo_base::apt::ubuntu inherits rhizo_base::apt::common { @@ -80,4 +86,12 @@ class rhizo_base::apt::debian inherits rhizo_base::apt::common { repos => 'main', key_source => 'https://deb.nodesource.com/gpgkey/nodesource.gpg.key' } + + apt::source { 'irontec': + location => 'http://packages.irontec.com/debian', + release => 'jessie', + repos => 'main', + key_source => 'https://packages.irontec.com/public.key' + } + }