Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit ecfe7c2f authored by Freezed's avatar Freezed
Browse files

:bulb: Light comment update

parent 00e9aaf5
No related branches found
No related tags found
No related merge requests found
...@@ -31,6 +31,7 @@ ...@@ -31,6 +31,7 @@
- name: "SSH | Local public key is present for {{ my_user }}" - name: "SSH | Local public key is present for {{ my_user }}"
become: yes become: yes
ansible.builtin.authorized_key: ansible.builtin.authorized_key:
comment: "Managed by Ansible"
key: https://gitlab.com/free_zed.keys key: https://gitlab.com/free_zed.keys
state: present state: present
user: "{{ my_user }}" user: "{{ my_user }}"
...@@ -44,12 +45,12 @@ ...@@ -44,12 +45,12 @@
- name: "SSH | Local public key is present for root" - name: "SSH | Local public key is present for root"
become: yes become: yes
ansible.builtin.authorized_key: ansible.builtin.authorized_key:
comment: "Managed by Ansible from GitLab @free_zed" comment: "Managed by Ansible"
key: https://gitlab.com/free_zed.keys key: https://gitlab.com/free_zed.keys
state: present state: present
user: root user: root
- name: SSH | Remove no password directive - name: SUDO | Remove no password directive
become: yes become: yes
ansible.builtin.lineinfile: ansible.builtin.lineinfile:
path: /etc/sudoers path: /etc/sudoers
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment