diff --git a/README.md b/README.md index 85b29d9..bb6aa10 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Common ========= Common user settings and tools used by Jannik Beyerstedt. -This role is compatible with Debian based systems and macOS. +This role is compatible with Debian based systems, macOS, CentOS (no development toolchains) and ArchLinux (no updates). Requirements diff --git a/meta/main.yml b/meta/main.yml index 6caeecd..edb6543 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -13,6 +13,12 @@ galaxy_info: - name: Darwin versions: - all + - name: Archlinux + versions: + - all + - name: Centos + versions: + - all galaxy_tags: [] diff --git a/tasks/devel.yml b/tasks/devel.yml index 45d67ab..e6e1b16 100644 --- a/tasks/devel.yml +++ b/tasks/devel.yml @@ -15,8 +15,8 @@ - name: vscode - Install and configure VS Code include_tasks: "{{ item }}" with_first_found: - - "vscode-{{ ansible_distribution }}.yml" - - "vscode-{{ (override_os_family is defined) | ternary(override_os_family,ansible_os_family) }}.yml" + - "devel-{{ ansible_distribution }}.yml" + - "devel-{{ (override_os_family is defined) | ternary(override_os_family,ansible_os_family) }}.yml" # Install Visual Studio Code and Set Basic Configuration - name: vscode - Basics