aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2016-05-25 08:40:19 +0200
committerFabian Affolter <fabian@affolter-engineering.ch>2016-05-25 08:40:19 +0200
commit004becac376c0d5485d995be7071bb0f5459e578 (patch)
treeb1eca9f2d996c91dc9fbefc102c66a9ab9c2df8a
parentfa44618a5daab4ab2de2b0fac9f5f35e77f78103 (diff)
downloadalpine-ansible-004becac376c0d5485d995be7071bb0f5459e578.tar.bz2
alpine-ansible-004becac376c0d5485d995be7071bb0f5459e578.tar.xz
Use raw
-rw-r--r--tasks/update.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tasks/update.yml b/tasks/update.yml
index bad77d7..bd4e0f5 100644
--- a/tasks/update.yml
+++ b/tasks/update.yml
@@ -1,12 +1,12 @@
# This playbook updates all Alpine Linux hosts.
#
-# Copyright (c) 2013 Fabian Affolter <fabian@affolter-engineering.ch>
+# Copyright (c) 2013-2016 Fabian Affolter <fabian@affolter-engineering.ch>
#
# Licensed under CC BY 3.0. All rights reserved.
#
---
- name: update all packages
- command: /sbin/apk upgrade -U -a
+ raw: /sbin/apk upgrade -U -a
- name: reboot the system
- command: /sbin/reboot -d 5
+ raw: /sbin/reboot -d 5