Merge branch 'master' of ssh://git_opytex/lafrite/Ansible_workstation
This commit is contained in:
commit
90734e6ee5
@ -10,7 +10,7 @@
|
|||||||
tasks:
|
tasks:
|
||||||
# - include: tasks/test.yml
|
# - include: tasks/test.yml
|
||||||
- include: tasks/arch_CLI_packages.yml
|
- include: tasks/arch_CLI_packages.yml
|
||||||
- include: tasks/zsh.yml
|
- include: tasks/prompt.yml
|
||||||
- include: tasks/users.yml
|
- include: tasks/users.yml
|
||||||
- include: tasks/sudo.yml
|
- include: tasks/sudo.yml
|
||||||
- include: tasks/ssh.yml
|
- include: tasks/ssh.yml
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
password: "{{ item.password }}"
|
password: "{{ item.password }}"
|
||||||
uid: "{{ item.uid }}"
|
uid: "{{ item.uid }}"
|
||||||
shell: "{{ prompt_place['stdout'] }}"
|
shell: "{{ prompt_place['stdout'] }}"
|
||||||
|
state: present
|
||||||
with_items: "{{ deploy_users }}"
|
with_items: "{{ deploy_users }}"
|
||||||
tags:
|
tags:
|
||||||
- first_deployement
|
- first_deployement
|
||||||
@ -18,7 +19,8 @@
|
|||||||
name: "{{ item.username }}"
|
name: "{{ item.username }}"
|
||||||
password: "{{ item.password }}"
|
password: "{{ item.password }}"
|
||||||
uid: "{{ item.uid }}"
|
uid: "{{ item.uid }}"
|
||||||
shell: "{{ prompt_place['stdout'] }}"
|
# shell: "{{ prompt_place['stdout'] }}"
|
||||||
|
state: present
|
||||||
with_items: "{{ me }}"
|
with_items: "{{ me }}"
|
||||||
when: not minimal or not server
|
when: not minimal or not server
|
||||||
tags:
|
tags:
|
||||||
|
@ -12,6 +12,11 @@
|
|||||||
# force: yes
|
# force: yes
|
||||||
# backup: yes
|
# backup: yes
|
||||||
|
|
||||||
|
- name: Install base CLI packages
|
||||||
|
pacman:
|
||||||
|
name: zsh
|
||||||
|
state: present
|
||||||
|
|
||||||
- name: Set shell for root to zsh
|
- name: Set shell for root to zsh
|
||||||
user:
|
user:
|
||||||
name: root
|
name: root
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
prompt: fish
|
||||||
|
|
||||||
deploy_public_key: id_ed25519_home.pub
|
deploy_public_key: id_ed25519_home.pub
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user