Fix case of boolean variable

This commit is contained in:
Alexander Grothe 2018-01-07 19:00:27 +01:00
parent 7f8f5b8290
commit 1bcf91fecc
5 changed files with 418 additions and 418 deletions

File diff suppressed because it is too large Load Diff

View File

@ -154,7 +154,7 @@ apt-get update
apt-get -y install --no-install-recommends ansible
# TODO: run ansible on local host
ansible-playbook yavdr07.yml -b -i 'localhost_inventory' --connection=local --tags="all" --extra-vars "first_run=true"
ansible-playbook yavdr07.yml -b -i 'localhost_inventory' --connection=local --tags="all" --extra-vars "first_run=True"
#+END_SRC
* Playbooks
** yavdr07.yml
@ -574,7 +574,7 @@ APT::Install-Suggests "0";
*** variables
#+BEGIN_SRC yaml :tangle roles/collect-facts/defaults/main.yml :mkdirp yes
first_run: false
first_run: False
#+END_SRC
*** tasks
***** main.yml
@ -1685,7 +1685,7 @@ b'\xde\xad\xbe\xef'
#+END_SRC
*** default variables
#+BEGIN_SRC yaml :tangle roles/yavdr-xorg/defaults/main.yml :mkdirp yes :padline no
first_run: false
first_run: False
#+END_SRC
*** tasks

View File

@ -13,4 +13,4 @@ apt-get update
apt-get -y install --no-install-recommends ansible
# TODO: run ansible on local host
ansible-playbook yavdr07.yml -b -i 'localhost_inventory' --connection=local --tags="all" --extra-vars "first_run=true"
ansible-playbook yavdr07.yml -b -i 'localhost_inventory' --connection=local --tags="all" --extra-vars "first_run=True"

View File

@ -1 +1 @@
first_run: false
first_run: False

View File

@ -1 +1 @@
first_run: false
first_run: False