adapt for manjaro

dev
Javanaut 10 months ago
parent 2849eda05a
commit cdc1664779

6
.gitignore vendored

@ -2,8 +2,10 @@ __pycache__
junk/ junk/
.vscode .vscode
.ipynb_checkpoints/ .ipynb_checkpoints/
ansible/inventory/hawaii.yml tools/ansible/inventory/hawaii.yml
ansible/inventory/peppermint.yml tools/ansible/inventory/peppermint.yml
tools/ansible/inventory/cappuccino.yml
tools/ansible/inventory/group_vars/all.yml
ffx_test_report.log ffx_test_report.log
bin/conversiontest.py bin/conversiontest.py
*.egg-info/ *.egg-info/

@ -6,13 +6,25 @@
- name: Update system and install packages - name: Update system and install packages
become: true become: true
when: ansible_os_family == 'Debian'
ansible.builtin.apt: ansible.builtin.apt:
update_cache: true
name: name:
- python3-virtualenv - python3-virtualenv
- ffmpeg - ffmpeg
- git - git
- screen - screen
update_cache: yes
- name: Update system and install packages
become: true
when: ansible_os_family == 'Archlinux'
ansible.builtin.pacman:
update_cache: true
name:
# - python-virtualenv
- ffmpeg
- git
- screen
- name: Create sync dir - name: Create sync dir
become: true become: true

Loading…
Cancel
Save