From 165e31bf3a2a39a3d187ed1d064439ad577f6d72 Mon Sep 17 00:00:00 2001 From: derp Date: Sun, 31 Jul 2016 07:08:59 -0400 Subject: [PATCH] Moved setup module step --- common.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common.yml b/common.yml index 57830ec..0b5d36d 100644 --- a/common.yml +++ b/common.yml @@ -16,13 +16,13 @@ - name: Install python2.7 for Ansible raw: apt-get install -qq -y python2.7 - - - name: Install Updates, Patches and Additional Security Software - apt: upgrade=dist update_cache=yes - name: Gather Facts setup: + - name: Install Updates, Patches and Additional Security Software + apt: upgrade=dist update_cache=yes + - name: Check if reboot is required shell: > if [[ $(readlink -f /vmlinuz) != /boot/vmlinuz-$(uname -r) ]]; then echo "required"; else echo "no"; fi