summaryrefslogtreecommitdiff
path: root/code/environments/production/modules/apt/tasks
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-12-20 12:39:15 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-12-20 12:39:15 +0100
commitf56d2d7888be1a27d7ef05d850afdc4e9dbb464a (patch)
treee193c75cbdb40c5290906d97b3ac8966a1099a47 /code/environments/production/modules/apt/tasks
downloadpuppet.SGM-f56d2d7888be1a27d7ef05d850afdc4e9dbb464a.tar.gz
puppet.SGM-f56d2d7888be1a27d7ef05d850afdc4e9dbb464a.tar.bz2
puppet.SGM-f56d2d7888be1a27d7ef05d850afdc4e9dbb464a.zip
initial draft of a minimal puppet config template
Diffstat (limited to 'code/environments/production/modules/apt/tasks')
-rw-r--r--code/environments/production/modules/apt/tasks/init.json10
-rwxr-xr-xcode/environments/production/modules/apt/tasks/init.rb24
2 files changed, 34 insertions, 0 deletions
diff --git a/code/environments/production/modules/apt/tasks/init.json b/code/environments/production/modules/apt/tasks/init.json
new file mode 100644
index 0000000..2020005
--- /dev/null
+++ b/code/environments/production/modules/apt/tasks/init.json
@@ -0,0 +1,10 @@
+{
+ "description": "Allows you to perform apt functions",
+ "input_method": "stdin",
+ "parameters": {
+ "action": {
+ "description": "Action to perform ",
+ "type": "Enum[update, upgrade]"
+ }
+ }
+}
diff --git a/code/environments/production/modules/apt/tasks/init.rb b/code/environments/production/modules/apt/tasks/init.rb
new file mode 100755
index 0000000..d256468
--- /dev/null
+++ b/code/environments/production/modules/apt/tasks/init.rb
@@ -0,0 +1,24 @@
+#!/opt/puppetlabs/puppet/bin/ruby
+require 'json'
+require 'open3'
+require 'puppet'
+
+def apt_get(action)
+ cmd = ['apt-get', action]
+ cmd << ' -y' if action == 'upgrade'
+ stdout, stderr, status = Open3.capture3(*cmd)
+ raise Puppet::Error, stderr if status != 0
+ { status: stdout.strip }
+end
+
+params = JSON.parse(STDIN.read)
+action = params['action']
+
+begin
+ result = apt_get(action)
+ puts result.to_json
+ exit 0
+rescue Puppet::Error => e
+ puts({ status: 'failure', error: e.message }.to_json)
+ exit 1
+end