color role → desktop_environment role
Is this commit without too many change so that Git catches on the rename? Yes, yes it is.
This commit is contained in:
parent
fd580acf2c
commit
fda5b38ddb
6 changed files with 46 additions and 16 deletions
12
config/automatrop/roles/facts/tasks/main.yml
Normal file
12
config/automatrop/roles/facts/tasks/main.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
- name: Set facts
|
||||
set_fact:
|
||||
arch_based: "{{ ansible_distribution == 'Archlinux' }}"
|
||||
arch: "{{ ansible_lsb.id == 'Arch' }}"
|
||||
manjaro: "{{ ansible_lsb.id == 'Manjaro' or ansible_lsb.id == 'Manjaro-ARM' }}"
|
||||
termux: "{{ ansible_distribution == 'OtherLinux' and ansible_python.executable == '/data/data/com.termux/files/usr/bin/python' }}"
|
||||
debian_based: "{{ ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu' }}"
|
||||
debian: "{{ ansible_distribution == 'Debian' }}"
|
||||
ubuntu: "{{ ansible_distribution == 'Ubuntu' }}"
|
||||
tags:
|
||||
- always
|
||||
# TODO Make this a real Ansible fact maybe?
|
Loading…
Add table
Add a link
Reference in a new issue