-
Notifications
You must be signed in to change notification settings - Fork 0
/
console.yml
115 lines (97 loc) · 2.79 KB
/
console.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
---
- name: Play for console.hayaworld.home
hosts: console
remote_user: hayato
gather_facts: true
become: true
vars_files:
- inventories/host_vars/console.yml
- inventories/host_vars/networks.yml
handlers:
- name: Restart handler tasks
ansible.builtin.import_tasks:
file: handlers/main.yml
tags:
- network
tasks:
- name: Mount Home drive
ansible.builtin.import_tasks:
file: tasks/console/mount_home.yml
tags:
- home
- mount
- name: Common Settings
ansible.builtin.import_tasks:
file: tasks/all/main.yml
- name: Put GUI session rc
ansible.builtin.copy:
src: templates/console/home/hayato/.xsessionrc
dest: /home/hayato/.xsessionrc
owner: hayato
group: hayato
mode: '0644'
tags:
- system
- name: Install Google Chrome Repo
ansible.builtin.import_tasks:
file: tasks/console/install_chrome.yml
tags:
- chrome
- name: Install Pre-builded Rename-util
ansible.builtin.import_tasks:
file: tasks/install_rename.yml
- name: Install Pre-builded SNS downloaders
ansible.builtin.import_tasks:
file: tasks/sns_dl.yml
tags:
- sns
- name: Install pipr
ansible.builtin.import_tasks:
file: tasks/pipr.yml
- name: Put Predeploy scripts
ansible.builtin.import_tasks:
file: tasks/console/put_scripts.yml
tags:
- put_script
- name: Fix ffmpegthumbnailer bugs
ansible.builtin.import_tasks:
file: tasks/console/ffmpegthumbnailer_fix.yml
- name: Install Docker(ce)
ansible.builtin.import_role:
name: geerlingguy.docker
vars:
docker_edition: 'ce'
docker_packages_state: present
docker_service_manage: true
docker_service_state: started
docker_service_enabled: true
docker_restart_handler_state: restarted
docker_users:
- hayato
- name: Install Ansible from PPA
ansible.builtin.import_tasks:
file: tasks/ansible_install.yml
when: ansible_distribution_release != 'oracular'
tags:
- ansible
- name: Make Started Services
ansible.builtin.import_tasks:
file: tasks/service_start.yml
- name: Mount skylark
ansible.builtin.import_tasks:
file: tasks/console/mount_skylark.yml
tags:
- skylark
- name: Install/Config Zramswap
ansible.builtin.import_tasks:
file: tasks/zram.yml
- name: Install Desktop
ansible.builtin.import_tasks:
file: tasks/console/desktop.yml
tags:
- desktop
- name: Configure Desktop using dconf
ansible.builtin.import_tasks:
file: tasks/console/dconf.yml
tags:
- desktop