We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 413e3c4 commit 17bd88bCopy full SHA for 17bd88b
provision/ansible/roles/user/tasks/rights.yml
@@ -1,7 +1,17 @@
1
- name: Fix filesystem rights (/usr/local/bin)
2
- command: 'chown -R vagrant:vagrant /usr/local/bin/'
3
- ignore_errors: True
+ file:
+ path: /usr/local/bin/
4
+ state: directory
5
+ mode: 0755
6
+ owner: 'vagrant'
7
+ group: 'vagrant'
8
+ recurse: 'yes'
9
10
- name: Fix filesystem rights (/home/vagrant)
- command: 'chown -R vagrant:vagrant /home/vagrant/.config/'
11
12
+ path: /home/vagrant/.config/
13
14
15
16
17
0 commit comments