From a8e7babc37d29d8116a8140137689743b70302aa Mon Sep 17 00:00:00 2001 From: LinuxSquare Date: Fri, 30 May 2025 17:39:28 +0200 Subject: [PATCH] Rename top.ansible.yml to standalone.ansible.yml, create symlink top.ansible.yml -> standalone.ansible.yml for legacy reasons --- standalone.ansible.yml | 22 ++++++++++++++++++++++ top.ansible.yml | 23 +---------------------- 2 files changed, 23 insertions(+), 22 deletions(-) create mode 100644 standalone.ansible.yml mode change 100644 => 120000 top.ansible.yml diff --git a/standalone.ansible.yml b/standalone.ansible.yml new file mode 100644 index 0000000..c204525 --- /dev/null +++ b/standalone.ansible.yml @@ -0,0 +1,22 @@ +- name: Setup Base + import_playbook: base.ansible.yml +- name: Setup Network + import_playbook: network/init.ansible.yml +- name: Setup Apps + import_playbook: apps/init.ansible.yml +- name: Setup SSH + import_playbook: openssh/init.ansible.yml +#- name: Setup MySQL +# import_playbook: mysql/init.ansible.yml +- name: Setup HAProxy + import_playbook: haproxy/init.ansible.yml + when: installation_type == 'proxy' +- name: Setup Podman Rootless + import_playbook: podman/init.ansible.yml + when: installation_type == 'build' or installation_type == 'gaming' or installation_type == 'container' +- name: Setup PMS-CLI + import_playbook: apps/pms-cli/init.ansible.yml + when: installation_type == 'gaming' +- name: Setup repo-mgmt + import_playbook: build/init.ansible.yml + when: installation_type == 'build' diff --git a/top.ansible.yml b/top.ansible.yml deleted file mode 100644 index c204525..0000000 --- a/top.ansible.yml +++ /dev/null @@ -1,22 +0,0 @@ -- name: Setup Base - import_playbook: base.ansible.yml -- name: Setup Network - import_playbook: network/init.ansible.yml -- name: Setup Apps - import_playbook: apps/init.ansible.yml -- name: Setup SSH - import_playbook: openssh/init.ansible.yml -#- name: Setup MySQL -# import_playbook: mysql/init.ansible.yml -- name: Setup HAProxy - import_playbook: haproxy/init.ansible.yml - when: installation_type == 'proxy' -- name: Setup Podman Rootless - import_playbook: podman/init.ansible.yml - when: installation_type == 'build' or installation_type == 'gaming' or installation_type == 'container' -- name: Setup PMS-CLI - import_playbook: apps/pms-cli/init.ansible.yml - when: installation_type == 'gaming' -- name: Setup repo-mgmt - import_playbook: build/init.ansible.yml - when: installation_type == 'build' diff --git a/top.ansible.yml b/top.ansible.yml new file mode 120000 index 0000000..d3fa962 --- /dev/null +++ b/top.ansible.yml @@ -0,0 +1 @@ +standalone.ansible.yml \ No newline at end of file