mirror of
https://github.com/eoli3n/dotfiles
synced 2024-11-22 15:01:59 +01:00
added init deblike playbook
This commit is contained in:
parent
5968fa8151
commit
96f2971675
25
init-deblike.yml
Normal file
25
init-deblike.yml
Normal file
@ -0,0 +1,25 @@
|
||||
---
|
||||
- hosts: all
|
||||
tasks:
|
||||
- name: install driman key
|
||||
authorized_key:
|
||||
user: root
|
||||
state: present
|
||||
key: '{{ item }}'
|
||||
with_file:
|
||||
- driman.pub
|
||||
- jk.pub
|
||||
|
||||
- name: install shell packages
|
||||
apt:
|
||||
name:
|
||||
- kitty-terminfo
|
||||
- fish
|
||||
|
||||
- name: change shell for users
|
||||
user:
|
||||
name: '{{ item }}'
|
||||
shell: /usr/bin/fish
|
||||
loop:
|
||||
- kube
|
||||
- root
|
Loading…
Reference in New Issue
Block a user