27 lines
531 B
Text
27 lines
531 B
Text
{% from "map.jinja" import noveria with context %}
|
|
|
|
include:
|
|
- directories
|
|
- system.base
|
|
|
|
system_shell_pkgs:
|
|
pkg.installed:
|
|
- pkgs:
|
|
- zsh
|
|
- alpine-zsh-config
|
|
- bash
|
|
- require:
|
|
- system_base_pkgs
|
|
|
|
system_shell_profile:
|
|
file.managed:
|
|
- name: /etc/profile
|
|
- source: salt://{{ tpldir }}/files/shell_profile.jinja
|
|
- template: jinja
|
|
- context:
|
|
CUSTOM_BIN: {{ noveria.bin_dir }}
|
|
- user: root
|
|
- group: root
|
|
- mode: '0644'
|
|
- require:
|
|
- system_shell_pkgs
|