]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-cm-ansible.git/commitdiff
paddles: Always call the set_fact plays
authorZack Cerza <zack@redhat.com>
Fri, 9 Oct 2015 21:09:42 +0000 (15:09 -0600)
committerZack Cerza <zack@redhat.com>
Fri, 9 Oct 2015 21:09:42 +0000 (15:09 -0600)
Signed-off-by: Zack Cerza <zack@redhat.com>
roles/paddles/tasks/main.yml

index c5be705b9629ff5fce1944ab4b6613dc7b459dad..bb525931380361ca344a6f2645436e4195b3a7f8 100644 (file)
@@ -6,16 +6,22 @@
 - name: Set repo location
   set_fact:
     paddles_repo_path: "/home/{{ paddles_user }}/paddles"
+  tags:
+    - always
 
 - name: Set paddles_address
   set_fact:
     paddles_address: http://{{ ansible_hostname }}/
   when: not paddles_address.startswith('http')
+  tags:
+    - always
 
 - name: Set db_url
   set_fact:
     db_url: "postgresql+psycopg2://{{ paddles_user }}:{{ db_pass }}@localhost/paddles"
   no_log: true
+  tags:
+    - always
 
 - include: apt_systems.yml
   when: ansible_pkg_mgr == "apt"