Set HOME permissions

This commit is contained in:
Anthony Rose 2021-02-25 19:37:28 +00:00
parent 74c7b85053
commit 8b4b799afb

View file

@ -13,6 +13,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Set HOME permissions
ansible.builtin.file:
path: "{{ ansible_env.HOME }}"
state: directory
mode: '0700'
- name: Create user bin directory
ansible.builtin.file:
path: "{{ ansible_env.HOME }}/bin"