dotfiles/.functions/salt.sh
Jonas Forsberg 93a38129c0
.
2021-11-12 12:51:33 +01:00

9 lines
324 B
Bash

#!/bin/bash
function salt() {
if [[ "$1" == "state.apply" ]]; then
sudo salt-call --local --file-root "$HOME/salt/states" --pillar-root "$HOME/salt/pillars" "$@" pillar="{username: $USER}"
else·
sudo salt-call --local --file-root "$HOME/salt/states" --pillar-root "$HOME/salt/pillars" "$@"
fi
}