aboutsummaryrefslogtreecommitdiffstats
path: root/roles/setup_utils/tasks/main.yml
blob: 300bef650ac02757d2a0639734b08dea7938084d (plain) (blame)
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

# =========================================================================== #
#                   __                __  _ __    
#       _________  / /__       __  __/ /_(_) /____
#      / ___/ __ \/ / _ \     / / / / __/ / / ___/
#     / /  / /_/ / /  __/    / /_/ / /_/ / (__  ) 
#    /_/   \____/_/\___(_)   \__,_/\__/_/_/____/
#
# =========================================================================== #

---
- name: Check installation of "{{ package_zsh }}"
  package:
    name: "{{ package_zsh }}"
    state: present

- name: Check installation of "{{ package_neovim }}"
  package:
    name: "{{ package_neovim }}"
    state: present

- name: Check installation of "{{ package_tmux }}"
  package:
    name: "{{ package_tmux }}"
    state: present
  ignore_errors: yes

- name: Check installation of "{{ package_curl }}"
  package:
    name: "{{ package_curl }}"
    state: present
  ignore_errors: yes

- name: Check installation of "{{ package_wget }}"
  package:
    name: "{{ package_wget }}"
    state: present
  ignore_errors: yes

- name: Check installation of figlet
  package:
    name: figlet
    state: present
  ignore_errors: yes

- name: Copy zshrc configuration file
  copy:
    src: zshrc
    dest: /etc/zshrc
    owner: root
    group: "{{ group_root }}"
    mode: 0644

- name: Copy tmux configuration file
  copy:
    src: tmux.conf
    dest: /etc/tmux.conf
    owner: root
    group: "{{ group_root }}"
    mode: 0644

- name: Retrieve all valid users for zsh
  shell: awk -F ":" '{ if($3 > 999 && $3 < 16000) { print $1 }}' /etc/passwd
  register: valid_users_shell

- name: Change shell for all valid users to zsh
  user:
    name: "{{ item }}"
    shell: "{{ path_zsh_bin }}" 
  loop: "{{ valid_users_shell.stdout_lines }}"
remember that computers suck.