ansible-playbooks/system/shell.ansible.yml

19 lines
431 B
YAML

- hosts: localhost
vars_files:
- ../map.yml
tasks:
- name: "system/shell : Install packages"
package:
name:
- fish
- 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 }}"