Update bootstrap-salt.sh

This is a typo on line 4302 (applies to Alpine Linux) - missing leading / on the redirect to /dev/null.

Also, around line 4301, the rc.d scripts are never copied to /etc/init.d for rc-update to act on them. I've not located any OpenRC init scripts within the salt repo, so haven't fixed that.
This commit is contained in:
Andy Boff 2017-01-13 19:19:12 +00:00 committed by GitHub
parent 8c970f46e2
commit fa9deb680c

View file

@ -4299,7 +4299,7 @@ install_alpine_linux_git_post() {
[ $fname = "syndic" ] && continue
if [ -f /sbin/rc-update ]; then
/sbin/rc-update add salt-$fname > dev/null 2>&1
/sbin/rc-update add salt-$fname > /dev/null 2>&1
continue
fi