From: Frank Brehm Date: Thu, 25 Feb 2016 17:39:48 +0000 (+0100) Subject: Adding basic/shells.sls X-Git-Url: https://git.uhu-banane.org/?a=commitdiff_plain;h=27b69d565a13a29e3ab186446adb401c542870e1;p=salt%2Fstates.git Adding basic/shells.sls --- diff --git a/basic/shells.sls b/basic/shells.sls new file mode 100644 index 0000000..c514646 --- /dev/null +++ b/basic/shells.sls @@ -0,0 +1,16 @@ +bash: + pkg.installed + +zsh: + pkg.installed + +inputrc-history-search-backward: + file.uncomment: + - name: /etc/inputrc + - regex: '"\e[5~": history-search-backward' + +inputrc-history-search-forward: + file.uncomment: + - name: /etc/inputrc + - regex: '"\e[6~": history-search-forward' +