Add basic phone role

IT'S HABBENING :DDDDD
This commit is contained in:
Salt 2020-09-04 09:08:00 -05:00
parent 9b332e2e1b
commit ab7dff679e
2 changed files with 14 additions and 7 deletions

View File

@ -7,3 +7,5 @@
tags: [ backups ] tags: [ backups ]
- role: desktop-zerotier - role: desktop-zerotier
tags: [ zerotier ] tags: [ zerotier ]
- role: phone-common
tags: [ phone, common ]

View File

@ -4,12 +4,17 @@
- name: Configure system - name: Configure system
block: block:
- name: Install packages - name: Install packages
apk: apt:
name: name:
- coreutils - keepassxc
- git - syncthing
- htop when: ansible_os_family == "Debian"
- ncdu - name: Enable services
- screen systemd:
- vim name: "{{ item }}"
state: started
enabled: yes
loop:
- "syncthing@{{ user_username }}.service"
when: ansible_service_mgr == "systemd"
become: yes become: yes