Skip to content

Commit

Permalink
More fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ahelal committed Mar 10, 2017
1 parent 4ab00cd commit 992a886
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tasks/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

- name: packages | Make sure the default packages are installed
apt:
name: "{{yum_default_packages|join(',')}}"
name: "{{ yum_default_packages|join(',') }}"
state: present
4 changes: 2 additions & 2 deletions tasks/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

- name: update | Check if first boot file exists
stat:
path="{{ upgrade_now_first_boot_file }}"
path="{{ yum_upgrade_now_first_boot_file }}"
register: yum_first_boot_stat

- name: update | Update yum if first time or force
Expand Down Expand Up @@ -47,4 +47,4 @@
- name: update | Touch file guard
copy:
content=""
dest="{{ upgrade_now_first_boot_file }}"
dest="{{ yum_upgrade_now_first_boot_file }}"
2 changes: 1 addition & 1 deletion vars/main.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
upgrade_now_first_boot_file : "/var/local/ansible_yum_upgrade"
yum_upgrade_now_first_boot_file : "/var/local/ansible_yum_upgrade"

0 comments on commit 992a886

Please sign in to comment.