summaryrefslogtreecommitdiff
path: root/code/environments/production/modules/apt/examples/debian_unstable.pp
diff options
context:
space:
mode:
Diffstat (limited to 'code/environments/production/modules/apt/examples/debian_unstable.pp')
-rw-r--r--code/environments/production/modules/apt/examples/debian_unstable.pp18
1 files changed, 18 insertions, 0 deletions
diff --git a/code/environments/production/modules/apt/examples/debian_unstable.pp b/code/environments/production/modules/apt/examples/debian_unstable.pp
new file mode 100644
index 0000000..b1492cd
--- /dev/null
+++ b/code/environments/production/modules/apt/examples/debian_unstable.pp
@@ -0,0 +1,18 @@
+package { 'debian-keyring':
+ ensure => present
+}
+
+package { 'debian-archive-keyring':
+ ensure => present
+}
+
+apt::source { 'debian_unstable':
+ location => 'http://debian.mirror.iweb.ca/debian/',
+ release => 'unstable',
+ repos => 'main contrib non-free',
+ pin => '-10',
+ key => {
+ id => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553',
+ server => 'subkeys.pgp.net',
+ },
+}