Encryption and major changes

This commit is contained in:
2024-09-28 23:12:19 +02:00
parent 1f060541c3
commit 6248286ad2
159 changed files with 153 additions and 129 deletions
+27
View File
@@ -0,0 +1,27 @@
---
- name: Set path
become: true
ansible.builtin.lineinfile:
regexp: "^PATH="
line: 'PATH="/usr/local/bin:/usr/sbin:/usr/bin:/bin:/snap/bin"'
dest: /etc/environment
mode: "0644"
state: present
create: false
backrefs: true
tags:
- path
- M1038
- name: Add path script
become: true
ansible.builtin.template:
src: etc/profile.d/initpath.sh.j2
dest: /etc/profile.d/initpath.sh
backup: true
mode: "0644"
owner: root
group: root
tags:
- path
- M1038