ipad-wall-displays-ansible/ipads.yml

27 lines
771 B
YAML
Raw Normal View History

2021-11-17 01:37:55 -05:00
- name: ipad setup
hosts: ipads
gather_facts: no
become: true
tasks:
- name: Add Karen's Repo
copy:
content: |
deb http://cydia.akemi.ai/ ./
dest: /etc/apt/sources.list.d/akemi.list
2021-11-17 01:37:55 -05:00
- name: Add rpetrich Repo
copy:
content: |
deb https://rpetri.ch/repo/ ./
dest: /etc/apt/sources.list.d/rpetrich.list
2021-11-17 01:37:55 -05:00
- name: Update apt sources
command: apt-get update
2021-11-17 01:37:55 -05:00
- name: Install packages
command: apt-get install -y --force-yes net.angelxwind.mikoto libactivator com.rpetrich.monocle
2021-11-17 01:37:55 -05:00
- name: Copy webclip
become: false
copy:
src: reservations_display.webclip
dest: /var/mobile/Library/WebClips/
2021-11-17 01:37:55 -05:00
- name: Respring
command: killall SpringBoard