summaryrefslogtreecommitdiff
path: root/manifests/params.pp
diff options
context:
space:
mode:
authorLeLutin <gabster@lelutin.ca>2017-02-24 23:27:32 +0000
committerLeLutin <gabster@lelutin.ca>2017-02-24 23:27:32 +0000
commit6739923a0f75ffc82d0822eb15636cb244b8e31f (patch)
treeb76b03a4c226d47605c30f8821711d09ec2f3825 /manifests/params.pp
parent1c31ee4c7240e192fc933c934bb05ea50537bedd (diff)
parent4a261733172f2699b217ea6d43ec9ee09a32c72d (diff)
Merge branch 'master' into 'master'
Move old monolithic preferences files to mutiple preferences.d files (Fix #14) Closes #14 See merge request !61
Diffstat (limited to 'manifests/params.pp')
-rw-r--r--manifests/params.pp23
1 files changed, 12 insertions, 11 deletions
diff --git a/manifests/params.pp b/manifests/params.pp
index 463cd63..3879c81 100644
--- a/manifests/params.pp
+++ b/manifests/params.pp
@@ -1,14 +1,16 @@
class apt::params () {
- $use_lts = false
- $use_volatile = false
- $use_backports = true
- $include_src = false
- $use_next_release = false
- $debian_url = 'http://httpredir.debian.org/debian/'
- $security_url = 'http://security.debian.org/'
- $ubuntu_url = 'http://archive.ubuntu.com/ubuntu'
- $lts_url = $debian_url
- $volatile_url = 'http://volatile.debian.org/debian-volatile/'
+ $use_lts = false
+ $use_volatile = false
+ $use_backports = true
+ $include_src = false
+ $use_next_release = false
+ $manage_preferences = true
+ $custom_preferences = undef
+ $debian_url = 'http://httpredir.debian.org/debian/'
+ $security_url = 'http://security.debian.org/'
+ $ubuntu_url = 'http://archive.ubuntu.com/ubuntu'
+ $lts_url = $debian_url
+ $volatile_url = 'http://volatile.debian.org/debian-volatile/'
case $::operatingsystem {
'debian': {
$repos = 'main contrib non-free'
@@ -20,6 +22,5 @@ class apt::params () {
fail("Unsupported system '${::operatingsystem}'.")
}
}
- $custom_preferences = ''
$custom_key_dir = false
}