Fix case of boolean variable
This commit is contained in:
parent
7f8f5b8290
commit
1bcf91fecc
824
Manual.html
824
Manual.html
File diff suppressed because it is too large
Load Diff
@ -154,7 +154,7 @@ apt-get update
|
|||||||
apt-get -y install --no-install-recommends ansible
|
apt-get -y install --no-install-recommends ansible
|
||||||
|
|
||||||
# TODO: run ansible on local host
|
# 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
|
#+END_SRC
|
||||||
* Playbooks
|
* Playbooks
|
||||||
** yavdr07.yml
|
** yavdr07.yml
|
||||||
@ -574,7 +574,7 @@ APT::Install-Suggests "0";
|
|||||||
|
|
||||||
*** variables
|
*** variables
|
||||||
#+BEGIN_SRC yaml :tangle roles/collect-facts/defaults/main.yml :mkdirp yes
|
#+BEGIN_SRC yaml :tangle roles/collect-facts/defaults/main.yml :mkdirp yes
|
||||||
first_run: false
|
first_run: False
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** tasks
|
*** tasks
|
||||||
***** main.yml
|
***** main.yml
|
||||||
@ -1685,7 +1685,7 @@ b'\xde\xad\xbe\xef'
|
|||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** default variables
|
*** default variables
|
||||||
#+BEGIN_SRC yaml :tangle roles/yavdr-xorg/defaults/main.yml :mkdirp yes :padline no
|
#+BEGIN_SRC yaml :tangle roles/yavdr-xorg/defaults/main.yml :mkdirp yes :padline no
|
||||||
first_run: false
|
first_run: False
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** tasks
|
*** tasks
|
||||||
|
|
||||||
|
@ -13,4 +13,4 @@ apt-get update
|
|||||||
apt-get -y install --no-install-recommends ansible
|
apt-get -y install --no-install-recommends ansible
|
||||||
|
|
||||||
# TODO: run ansible on local host
|
# 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"
|
||||||
|
@ -1 +1 @@
|
|||||||
first_run: false
|
first_run: False
|
||||||
|
@ -1 +1 @@
|
|||||||
first_run: false
|
first_run: False
|
||||||
|
Loading…
Reference in New Issue
Block a user