@installdoc/ansible-gas-station
Version:
An Ansible playbook that provisions your network with software from GitHub Awesome lists, developed with disaster recovery in mind ⛽🔥🤤
29 lines (24 loc) • 1 kB
YAML
- name: "Ensure {{ app_name }} is installed"
community.general.snap:
classic: true
name: intellij-idea-community
state: "{{ app_state | default('present') }}"
- name: Fetch the release information
uri:
url: "https://snapcraft.io/intellij-idea-community"
return_content: true
register: intellij_release
- name: "Determine the Plugins folder path based on the version of {{ app_name }} installed"
set_fact:
plugins_folder: "{{ plugin_folder_prefix + intellij_release.content | regex_search('latest\/stable (\\d*\\.\\d*)') | replace('latest/stable ', '') }}"
- name: "Determine the Plugins folder path based on the version of {{ app_name }} installed"
set_fact:
colors_folder: "{{ plugins_folder + '/colors' }}"
- name: Run generic tasks
include_tasks: config-Linux.yml
loop: "{{ user_configs }}"
loop_control:
label: "{{ user.username }}"
loop_var: user
when: (user.system is not defined) or ((user.system is defined) and (not user.system))