aboutsummaryrefslogtreecommitdiffstats
path: root/roles/common/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/common/tasks/main.yml')
-rw-r--r--roles/common/tasks/main.yml52
1 files changed, 52 insertions, 0 deletions
diff --git a/roles/common/tasks/main.yml b/roles/common/tasks/main.yml
new file mode 100644
index 0000000..7dbc5dd
--- /dev/null
+++ b/roles/common/tasks/main.yml
@@ -0,0 +1,52 @@
+
+# common ~~ tasks/main.yml
+
+---
+
+- name: Check installation of package "{{ item }}"
+ become: yes
+
+ package:
+ name: "{{ item }}"
+ state: present
+
+ loop:
+ - "{{ packages.zsh }}"
+ - "{{ packages.curl }}"
+ - "{{ packages.tmux }}"
+ - "{{ packages.wget }}"
+ - "{{ packages.figlet }}"
+ - "{{ packages.neovim }}"
+
+ 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: Synchronize host hostname with config hostname
+ hostname:
+ name: "{{ inventory_hostname }}"
+
+- 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.