add base.ansible.yml, partially add fish shell as default
This commit is contained in:
parent
a1572676a4
commit
5f6b1f8ea0
4 changed files with 10 additions and 9 deletions
6
base.ansible.yml
Normal file
6
base.ansible.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
- name: Run Migrations
|
||||
import_playbook: migrations.ansible.yml
|
||||
- name: Setup Directories
|
||||
import_playbook: directories.ansible.yml
|
||||
- name: Setup System
|
||||
import_playbook: system/init.ansible.yml
|
|
@ -5,8 +5,7 @@
|
|||
- name: "system/shell : Install packages"
|
||||
package:
|
||||
name:
|
||||
- zsh
|
||||
- alpine-zsh-config
|
||||
- fish
|
||||
- bash
|
||||
state: present
|
||||
- name: "system/shell : Populate shell profile"
|
||||
|
|
|
@ -12,4 +12,4 @@
|
|||
- name: "system/user : Edit root user"
|
||||
user:
|
||||
name: root
|
||||
shell: /bin/zsh
|
||||
shell: /usr/bin/fish
|
||||
|
|
|
@ -1,9 +1,5 @@
|
|||
- name: Run Migrations
|
||||
import_playbook: migrations.ansible.yml
|
||||
- name: Setup Directories
|
||||
import_playbook: directories.ansible.yml
|
||||
- name: Setup System
|
||||
import_playbook: system/init.ansible.yml
|
||||
- name: Setup Base
|
||||
import_playbook: base.ansible.yml
|
||||
- name: Setup Network
|
||||
import_playbook: network/init.ansible.yml
|
||||
- name: Setup Apps
|
||||
|
|
Loading…
Reference in a new issue