20 lines
460 B
YAML
20 lines
460 B
YAML
- hosts: localhost
|
|
vars_files:
|
|
- ../map.yml
|
|
tasks:
|
|
- name: "system/shell : Install packages"
|
|
package:
|
|
name:
|
|
- zsh
|
|
- alpine-zsh-config
|
|
- bash
|
|
state: present
|
|
- name: "system/shell : Populate shell profile"
|
|
template:
|
|
src: files/shell_profile.j2
|
|
dest: /etc/profile
|
|
owner: root
|
|
group: root
|
|
mode: "0644"
|
|
vars:
|
|
CUSTOM_BIN: "{{ bin_dir }}"
|