diff --git a/main.yml b/admin-cli.yml similarity index 100% rename from main.yml rename to admin-cli.yml diff --git a/gui.yml b/admin-gui.yml similarity index 100% rename from gui.yml rename to admin-gui.yml diff --git a/user-cli.yml b/user-cli.yml new file mode 100755 index 0000000..88638ea --- /dev/null +++ b/user-cli.yml @@ -0,0 +1,9 @@ +#!/usr/bin/env ansible-playbook +--- +- name: Setup GUI for user only + hosts: localhost + vars: + gui: true + tasks: + - include_role: + name: home-cli diff --git a/user-gui.yml b/user-gui.yml new file mode 100755 index 0000000..02e7baa --- /dev/null +++ b/user-gui.yml @@ -0,0 +1,11 @@ +#!/usr/bin/env ansible-playbook +--- +- name: Setup GUI for user only + hosts: localhost + vars: + gui: true + tasks: + - include_role: + name: home-cli + - include_role: + name: home-gui