Feat(Server): Add Manioc
This commit is contained in:
parent
1729c415c0
commit
ada234ed9e
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
vars_files:
|
vars_files:
|
||||||
- vars/common.yml
|
- vars/common.yml
|
||||||
|
- vars/server.yml
|
||||||
- vars/Bilimbi.yml
|
- vars/Bilimbi.yml
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
|
23
Manioc.yml
Normal file
23
Manioc.yml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
---
|
||||||
|
- hosts: localhost
|
||||||
|
connection: local
|
||||||
|
|
||||||
|
vars_files:
|
||||||
|
- vars/common.yml
|
||||||
|
- vars/server.yml
|
||||||
|
- vars/Manioc.yml
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
- include: tasks/deb_CLI_packages.yml
|
||||||
|
- include: tasks/zsh.yml
|
||||||
|
- include: tasks/users.yml
|
||||||
|
- include: tasks/sudo.yml
|
||||||
|
- include: tasks/ssh.yml
|
||||||
|
- include: tasks/dotfiles.yml
|
||||||
|
- include: tasks/docker.yml
|
||||||
|
|
||||||
|
handlers:
|
||||||
|
- name: restart sshd
|
||||||
|
service:
|
||||||
|
name: sshd
|
||||||
|
state: restarted
|
@ -24,6 +24,11 @@ Installing Bilimbi
|
|||||||
|
|
||||||
ansible-pull -U https://git.opytex.org/lafrite/Ansible_workstation.git Bilimbi.yml
|
ansible-pull -U https://git.opytex.org/lafrite/Ansible_workstation.git Bilimbi.yml
|
||||||
|
|
||||||
|
Installing Manioc
|
||||||
|
|
||||||
|
ansible-pull -U https://git.opytex.org/lafrite/Ansible_workstation.git Manioc.yml
|
||||||
|
|
||||||
|
|
||||||
After running the script, there is a bug with $TERM which makes BACKSPACE and TAB to have strange behavior. To solve it, from an other computer run:
|
After running the script, there is a bug with $TERM which makes BACKSPACE and TAB to have strange behavior. To solve it, from an other computer run:
|
||||||
|
|
||||||
infocmp -x | ssh -t root@remote-host 'cat > "$TERM.info" && tic -x "$TERM.info"'
|
infocmp -x | ssh -t root@remote-host 'cat > "$TERM.info" && tic -x "$TERM.info"'
|
||||||
|
@ -1,7 +1,2 @@
|
|||||||
---
|
---
|
||||||
me: "{{ deploy_users }}"
|
|
||||||
deploy_public_key: files/id_ed25519_embrevade.pub
|
|
||||||
|
|
||||||
minimal: true
|
|
||||||
server: true
|
|
||||||
|
|
||||||
|
1
vars/Manioc.yml
Normal file
1
vars/Manioc.yml
Normal file
@ -0,0 +1 @@
|
|||||||
|
---
|
7
vars/server.yml
Normal file
7
vars/server.yml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
me: "{{ deploy_users }}"
|
||||||
|
deploy_public_key: files/id_ed25519_embrevade.pub
|
||||||
|
|
||||||
|
minimal: true
|
||||||
|
server: true
|
||||||
|
|
Loading…
Reference in New Issue
Block a user