-
Notifications
You must be signed in to change notification settings - Fork 0
/
ubuntu_desktop.yml
62 lines (56 loc) · 1.62 KB
/
ubuntu_desktop.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
---
# Run this playbook on the local machine.
- hosts: 127.0.0.1
connection: local
vars_prompt:
name: ssh_passphrase
prompt: "Enter ssh passphrase. It will get used if an ssh key needs to be generated"
vars_files:
- vars.yml
tasks:
- name: check ubuntu codename
command: "lsb_release -cs"
register: codename_output
- name: save the ubuntu codename for other tasks to use
ansible.builtin.set_fact:
ubuntu_codename: "{{ codename_output.stdout }}"
- name: Include all tasks
include_tasks: "{{ outer_item }}"
loop_control:
loop_var: outer_item
loop:
- tasks/ngrok.yml
- tasks/ssh.yml
- tasks/ubuntu-packages.yml
- tasks/security.yml
- tasks/ubuntu-gui-packages.yml
- tasks/docker_ubuntu.yml
- tasks/neovim-ubuntu.yml
- tasks/zsh.yml
- tasks/youtube-dl-ubuntu.yml
- tasks/fix_ubuntu_zsh_snaps.yml
- tasks/dotfiles.yml
- tasks/repos.yml
# - tasks/gcp-sdk.yml
# - tasks/heroku.yml
# - tasks/fpp.yml
- tasks/rtx-ubuntu.yml
- tasks/old_erlang.yml
# - tasks/flutter.yml
- tasks/awscli.yml
- tasks/rustup.yml
# - tasks/aws-vault-ubuntu.yml
- tasks/coding_helpers.yml
# - tasks/elm.yml
# - tasks/rebar3.yml
# - tasks/fish.yml
# - tasks/stack.yml
# - tasks/docker.yml
# - tasks/fzf.yml
# - tasks/k9s.yml
- tasks/platformio.yml
- tasks/zoom.yml
- tasks/signal.yml
# - tasks/ccls.yml
# handlers:
# - handlers/all.yml