Skip to content

Commit

Permalink
Add user to "wireshark" group
Browse files Browse the repository at this point in the history
  • Loading branch information
OrBin committed Dec 13, 2023
1 parent b90923c commit f7adc35
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion tasks/configuration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,18 @@
backup: yes
mode: "0644"

- name: Change shell to zsh
- name: Create "wireshark" group
ansible.builtin.group:
name: wireshark
become: yes

- name: Change shell to zsh and add to groups
ansible.builtin.user:
name: "{{ansible_user_id}}"
shell: /bin/zsh
groups:
- wireshark
append: true
become: yes

- name: Create directory for personal internal scripts
Expand Down

0 comments on commit f7adc35

Please sign in to comment.