From e071690c3499de26b96b6497c6f575edbc4abcbf Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Mon, 22 Jun 2020 23:32:35 +0100 Subject: [PATCH] Use 'hosts: all' to allow running against remote machines --- admin-cli.yml | 2 +- admin-gui.yml | 2 +- user-cli.yml | 2 +- user-gui.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/admin-cli.yml b/admin-cli.yml index a6fabe6..fb94d05 100755 --- a/admin-cli.yml +++ b/admin-cli.yml @@ -1,7 +1,7 @@ #!/usr/bin/env ansible-playbook --- - name: Setup CLI - hosts: localhost + hosts: all vars: gui: false tasks: diff --git a/admin-gui.yml b/admin-gui.yml index 02e05dc..4671404 100755 --- a/admin-gui.yml +++ b/admin-gui.yml @@ -1,7 +1,7 @@ #!/usr/bin/env ansible-playbook --- - name: Setup GUI - hosts: localhost + hosts: all vars: gui: true tasks: diff --git a/user-cli.yml b/user-cli.yml index 88638ea..dc6aa8d 100755 --- a/user-cli.yml +++ b/user-cli.yml @@ -1,7 +1,7 @@ #!/usr/bin/env ansible-playbook --- - name: Setup GUI for user only - hosts: localhost + hosts: all vars: gui: true tasks: diff --git a/user-gui.yml b/user-gui.yml index 02e7baa..ce630b7 100755 --- a/user-gui.yml +++ b/user-gui.yml @@ -1,7 +1,7 @@ #!/usr/bin/env ansible-playbook --- - name: Setup GUI for user only - hosts: localhost + hosts: all vars: gui: true tasks: