From 99355ed3de78f6d1d35a9f0cce9e1ba86be518ab Mon Sep 17 00:00:00 2001 From: "flyingscorpio@clevo" Date: Fri, 11 Mar 2022 22:30:11 +0100 Subject: [PATCH] Merge playbooks in one --- install-apache.yml | 7 ------- install-mariadb.yml | 7 ------- playbook.yml | 5 +++++ 3 files changed, 5 insertions(+), 14 deletions(-) delete mode 100644 install-apache.yml delete mode 100644 install-mariadb.yml create mode 100644 playbook.yml diff --git a/install-apache.yml b/install-apache.yml deleted file mode 100644 index e983b62..0000000 --- a/install-apache.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- - -- name: "Install apache" - hosts: tunuifranken.info - gather_facts: no - roles: - - role: "apache-install" diff --git a/install-mariadb.yml b/install-mariadb.yml deleted file mode 100644 index 259f2fc..0000000 --- a/install-mariadb.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- - -- name: "Install mariadb" - hosts: tunuifranken.info - gather_facts: no - roles: - - role: "mariadb-install" diff --git a/playbook.yml b/playbook.yml new file mode 100644 index 0000000..b1f051e --- /dev/null +++ b/playbook.yml @@ -0,0 +1,5 @@ +--- +- hosts: lime2 + roles: + - role: "apache-install" + - role: "mariadb-install"