Initial
This commit is contained in:
22
roles/base/handlers/main.yml
Normal file
22
roles/base/handlers/main.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
---
|
||||
- name: apt_update
|
||||
apt: update_cache=yes
|
||||
|
||||
- name: restart_sshd
|
||||
service:
|
||||
name: "{{ openssh_service }}"
|
||||
state: restarted
|
||||
|
||||
- name: update_tmux_plugin_perms
|
||||
file:
|
||||
path: /home/bzoicas/.tmux/plugins
|
||||
owner: bzoicas
|
||||
group: bzoicas
|
||||
recurse: true
|
||||
|
||||
- name: update_vim_bundle_perms
|
||||
file:
|
||||
path: /home/bzoicas/.vim/bundle
|
||||
owner: bzoicas
|
||||
group: bzoicas
|
||||
recurse: true
|
||||
Reference in New Issue
Block a user