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 ]
- role: desktop-zerotier
tags: [ zerotier ]
- role: phone-common
tags: [ phone, common ]

View File

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