ansible-playbooks/system/shell.ansible.yml
2025-05-01 22:20:09 +02:00

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 }}"