update netscaler example

This commit is contained in:
Michael DeHaan 2013-05-05 13:40:12 -04:00
parent 8d0b8c70ce
commit 6ae99cdc7a

View file

@ -12,14 +12,14 @@
# type of the netscaler object you want to manipulate # type of the netscaler object you want to manipulate
type: service type: service
# netscaler object name # netscaler object name
name: ${facter_fqdn}:8080 name: "{{facter_fqdn}}:8080"
tasks: tasks:
- name: disable service in the lb - name: disable service in the lb
action: netscaler nsc_host=${nsc_host} user=${nsc_user} password=${nsc_pass} name=${name} type=${type} action=disable action: netscaler nsc_host={{nsc_host}} user={{nsc_user}} password={{nsc_pass}} name={{name}} type={{type}} action=disable
- name: deploy new code - name: deploy new code
action: shell yum upgrade -y action: shell yum upgrade -y
- name: enable in the lb - name: enable in the lb
action: netscaler nsc_host=${nsc_host} user=${nsc_user} password=${nsc_pass} name=${name} type=${type} action=enable action: netscaler nsc_host={{nsc_host}} user={{nsc_user}} password={{nsc_pass}} name={{name}} type={{type}} action=enable