summaryrefslogtreecommitdiff
path: root/code/environments/production/modules/apt/manifests/conf.pp
diff options
context:
space:
mode:
Diffstat (limited to 'code/environments/production/modules/apt/manifests/conf.pp')
-rw-r--r--code/environments/production/modules/apt/manifests/conf.pp22
1 files changed, 22 insertions, 0 deletions
diff --git a/code/environments/production/modules/apt/manifests/conf.pp b/code/environments/production/modules/apt/manifests/conf.pp
new file mode 100644
index 0000000..b791f85
--- /dev/null
+++ b/code/environments/production/modules/apt/manifests/conf.pp
@@ -0,0 +1,22 @@
+# Defining apt config
+define apt::conf (
+ Optional[String] $content = undef,
+ Enum['present', 'absent'] $ensure = present,
+ Variant[String, Integer] $priority = 50,
+ Optional[Boolean] $notify_update = undef,
+) {
+
+ unless $ensure == 'absent' {
+ unless $content {
+ fail('Need to pass in content parameter')
+ }
+ }
+
+ $confheadertmp = epp('apt/_conf_header.epp')
+ apt::setting { "conf-${name}":
+ ensure => $ensure,
+ priority => $priority,
+ content => "${confheadertmp}${content}",
+ notify_update => $notify_update,
+ }
+}