2011-04-03 05:02:48 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Salt minion
|
|
|
|
###################################
|
|
|
|
|
|
|
|
# LSB header
|
|
|
|
|
|
|
|
### BEGIN INIT INFO
|
2013-02-13 15:32:49 +00:00
|
|
|
# Provides: salt-minion
|
|
|
|
# Required-Start: $all
|
2013-02-13 18:17:33 +00:00
|
|
|
# Required-Stop:
|
2013-02-13 15:32:49 +00:00
|
|
|
# Default-Start: 2 3 4 5
|
|
|
|
# Default-Stop: 0 1 6
|
|
|
|
# Short-Description: Salt minion daemon
|
|
|
|
# Description: This is the Salt minion daemon that can be controlled by the
|
|
|
|
# Salt master.
|
2011-04-03 05:02:48 +00:00
|
|
|
### END INIT INFO
|
|
|
|
|
2013-02-13 15:32:49 +00:00
|
|
|
|
2011-04-03 05:02:48 +00:00
|
|
|
# chkconfig header
|
|
|
|
|
2013-02-13 18:17:33 +00:00
|
|
|
# chkconfig: 345 97 04
|
2013-02-13 15:32:49 +00:00
|
|
|
# description: This is the Salt minion daemon that can be controlled by the Salt master.
|
2011-04-03 05:02:48 +00:00
|
|
|
#
|
|
|
|
# processname: /usr/bin/salt-minion
|
|
|
|
|
2016-05-09 17:57:13 +00:00
|
|
|
# Allow these to be overridden for tests
|
2016-11-29 14:23:48 +00:00
|
|
|
: "${SALTMINION_BINDIR:=/usr/bin}"
|
|
|
|
: "${SALTMINION_SYSCONFDIR:=/etc}"
|
2013-02-13 15:32:49 +00:00
|
|
|
|
2016-05-09 17:57:13 +00:00
|
|
|
# Default values (can be overridden in settings file)
|
2016-11-29 14:23:48 +00:00
|
|
|
: "${USER:=$(id -nu)}"
|
2016-05-09 17:57:13 +00:00
|
|
|
SALTMINION="${SALTMINION_BINDIR}/salt-minion"
|
|
|
|
SALTCALL="${SALTMINION_BINDIR}/salt-call"
|
|
|
|
# SALTMINION_CONFIGS are newline-separated entries of: MINION_USER CONFIG_DIR
|
2016-12-14 09:53:19 +00:00
|
|
|
: "${SALTMINION_CONFIGS:="
|
2016-05-09 17:57:13 +00:00
|
|
|
$USER ${SALTMINION_SYSCONFDIR}/salt
|
2016-12-14 09:53:19 +00:00
|
|
|
"}"
|
2016-05-09 17:57:13 +00:00
|
|
|
SALTMINION_ARGS=""
|
|
|
|
SALTMINION_TIMEOUT=30
|
|
|
|
SALTMINION_TICK=1
|
2011-04-03 05:02:48 +00:00
|
|
|
|
2016-05-09 17:57:13 +00:00
|
|
|
SERVICE="salt-minion"
|
2013-09-13 17:48:50 +00:00
|
|
|
|
2016-05-09 17:57:13 +00:00
|
|
|
# Read in settings file
|
|
|
|
if [ -f "${SALTMINION_SYSCONFDIR}/default/salt" ]; then
|
|
|
|
. "${SALTMINION_SYSCONFDIR}/default/salt"
|
|
|
|
elif [ -f "${SALTMINION_SYSCONFDIR}/sysconfig/salt" ]; then
|
|
|
|
. "${SALTMINION_SYSCONFDIR}/sysconfig/salt"
|
2013-09-11 20:14:14 +00:00
|
|
|
fi
|
|
|
|
|
2011-04-03 05:02:48 +00:00
|
|
|
RETVAL=0
|
2016-05-09 17:57:13 +00:00
|
|
|
NS_NOTRIM="--notrim"
|
|
|
|
ERROR_TO_DEVNULL="/dev/null"
|
|
|
|
|
|
|
|
|
|
|
|
_su_cmd() {
|
|
|
|
local user="$1"
|
|
|
|
shift
|
|
|
|
|
|
|
|
if [ "X$USER" = "X$user" ]; then
|
|
|
|
eval $1
|
|
|
|
else
|
|
|
|
su -l -c "$1" "$user"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
_get_pid() {
|
|
|
|
netstat $NS_NOTRIM -ap --protocol=unix 2>$ERROR_TO_DEVNULL \
|
2016-12-14 09:53:19 +00:00
|
|
|
| sed -r -e "\|\s${SOCK_DIR}/minion_event_${MINION_ID_HASH}_pub\.ipc$|"'!d; s|/.*||; s/.*\s//;' \
|
|
|
|
| uniq
|
2016-05-09 17:57:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
_is_running() {
|
|
|
|
[ -n "$(_get_pid)" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
_get_salt_config_value() {
|
|
|
|
_su_cmd \
|
|
|
|
"$MINION_USER" \
|
2016-11-29 14:23:48 +00:00
|
|
|
"\
|
2016-05-09 17:57:13 +00:00
|
|
|
\"$SALTCALL\" \
|
|
|
|
-c \"$CONFIG_DIR\" \
|
|
|
|
--no-color \
|
|
|
|
--local config.get \
|
|
|
|
\"$1\" \
|
|
|
|
" \
|
|
|
|
2>$ERROR_TO_DEVNULL \
|
|
|
|
| sed -r -e '2!d; s/^\s*//;'
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
_make_id_hash() {
|
|
|
|
# $1 - minion_id
|
|
|
|
local hasher=''
|
|
|
|
|
|
|
|
case "$(_get_salt_config_value hash_type)" in
|
|
|
|
(md5) hasher="md5sum";;
|
|
|
|
(sha1) hasher="sha1sum";;
|
|
|
|
(sha224) hasher="sha224sum";;
|
|
|
|
(sha256) hasher="sha256sum";;
|
|
|
|
(sha384) hasher="sha384sum";;
|
|
|
|
(sha512) hasher="sha512sum";;
|
|
|
|
(*) echo "ERROR: No salt hash_type specified";;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if [ -n "$hasher" ]; then
|
|
|
|
printf "$1" | "$hasher" | cut -c 1-10
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2011-04-03 05:02:48 +00:00
|
|
|
|
|
|
|
start() {
|
2016-05-09 17:57:13 +00:00
|
|
|
# $1 - config dir
|
|
|
|
local retval=0
|
|
|
|
|
|
|
|
if _is_running; then
|
|
|
|
echo "Service $SERVICE:$MINION_USER:$MINION_ID already running"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo -n "Starting $SERVICE:$MINION_USER:$MINION_ID daemon: "
|
|
|
|
|
|
|
|
_su_cmd \
|
|
|
|
"$MINION_USER" \
|
2016-11-29 14:23:48 +00:00
|
|
|
"\
|
2016-05-09 17:57:13 +00:00
|
|
|
\"$SALTMINION\" \
|
|
|
|
-c \"$CONFIG_DIR\" \
|
|
|
|
-d $SALTMINION_ARGS \
|
|
|
|
${SALTMINION_DEBUG:+-l debug} \
|
|
|
|
" \
|
|
|
|
2>$ERROR_TO_DEVNULL \
|
|
|
|
|| retval=$?
|
|
|
|
|
|
|
|
if [ 0 -eq "$retval" ]; then
|
|
|
|
local endtime=$(($(date '+%s')+$SALTMINION_TIMEOUT))
|
|
|
|
while ! _is_running; do
|
|
|
|
if [ "$endtime" -lt "$(date '+%s')" ]; then
|
|
|
|
echo -n "TIMEOUT "
|
|
|
|
retval=1
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
sleep $SALTMINION_TICK
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ 0 -eq "$retval" ]; then
|
|
|
|
echo -n "OK"
|
2011-04-03 05:02:48 +00:00
|
|
|
else
|
2016-05-09 17:57:13 +00:00
|
|
|
echo -n "FAIL"
|
|
|
|
if [ -n "$SALTMINION_DEBUG" ]; then
|
|
|
|
printf "\nPROCESSES:\n" >&2
|
|
|
|
ps wwwaxu | grep '[s]alt-minion' >&2
|
|
|
|
printf "\nSOCKETS:\n" >&2
|
|
|
|
netstat $NS_NOTRIM -ap --protocol=unix | grep 'salt.*minion' >&2
|
|
|
|
printf "\nLOG_FILE:\n" >&2
|
|
|
|
tail -n 20 "$LOG_FILE" >&2
|
|
|
|
printf "\nENVIRONMENT:\n" >&2
|
|
|
|
env >&2
|
2013-05-03 20:18:42 +00:00
|
|
|
fi
|
2011-04-03 05:02:48 +00:00
|
|
|
fi
|
|
|
|
echo
|
2016-05-09 17:57:13 +00:00
|
|
|
|
|
|
|
return $retval
|
2011-04-03 05:02:48 +00:00
|
|
|
}
|
|
|
|
|
2016-05-09 17:57:13 +00:00
|
|
|
|
2011-04-03 05:02:48 +00:00
|
|
|
stop() {
|
2016-05-09 17:57:13 +00:00
|
|
|
# $1 - config dir
|
|
|
|
local retval=0
|
|
|
|
|
|
|
|
if ! _is_running; then
|
|
|
|
echo "Service $SERVICE:$MINION_USER:$MINION_ID is not running"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo -n "Stopping $SERVICE:$MINION_USER:$MINION_ID daemon: "
|
|
|
|
local pid="$(_get_pid)"
|
|
|
|
|
|
|
|
# pid below is intentionally not quoted in case there are *multiple*
|
|
|
|
# minions running with the same configuration.
|
|
|
|
_su_cmd "$MINION_USER" "kill -TERM $pid 2>/dev/null" || retval=$?
|
|
|
|
if [ 0 -eq "$retval" ]; then
|
|
|
|
local endtime=$(($(date '+%s')+$SALTMINION_TIMEOUT))
|
|
|
|
while _is_running; do
|
|
|
|
if [ "$endtime" -lt "$(date '+%s')" ]; then
|
|
|
|
# Try one more time with a big hammer
|
|
|
|
_su_cmd "$MINION_USER" "kill -KILL $pid 2>/dev/null" || :
|
|
|
|
sleep $SALTMINION_TICK
|
|
|
|
if _is_running; then
|
|
|
|
echo -n "TIMEOUT "
|
|
|
|
retval=1
|
|
|
|
fi
|
|
|
|
break
|
2014-06-25 04:58:02 +00:00
|
|
|
fi
|
2016-05-09 17:57:13 +00:00
|
|
|
sleep 1
|
|
|
|
done
|
|
|
|
|
2011-04-03 05:02:48 +00:00
|
|
|
fi
|
2016-05-09 17:57:13 +00:00
|
|
|
|
|
|
|
if [ 0 -eq "$retval" ]; then
|
|
|
|
rm -f "$PID_FILE"
|
|
|
|
echo -n "OK"
|
|
|
|
else
|
|
|
|
echo -n "FAIL"
|
|
|
|
fi
|
|
|
|
|
2011-04-03 05:02:48 +00:00
|
|
|
echo
|
2016-05-09 17:57:13 +00:00
|
|
|
|
|
|
|
return $retval
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
status() {
|
|
|
|
local retval=0
|
|
|
|
local pid="$(_get_pid)"
|
|
|
|
|
|
|
|
if [ -n "$pid" ]; then
|
2016-12-14 09:53:19 +00:00
|
|
|
# Unquote $pid here to display multiple PIDs in one line
|
|
|
|
echo "$SERVICE:$MINION_USER:$MINION_ID is running:" $pid
|
2016-05-09 17:57:13 +00:00
|
|
|
else
|
|
|
|
retval=3
|
|
|
|
echo "$SERVICE:$MINION_USER:$MINION_ID is stopped."
|
|
|
|
if [ -e "$PID_FILE" ]; then
|
|
|
|
echo "$SERVICE:$MINION_USER:$MINION_ID has orphaned pid file: $PID_FILE."
|
|
|
|
retval=1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
return $retval
|
2011-04-03 05:02:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
restart() {
|
2016-05-09 17:57:13 +00:00
|
|
|
# $1 - config dir
|
|
|
|
stop "$1"
|
|
|
|
start "$1"
|
2011-04-03 05:02:48 +00:00
|
|
|
}
|
|
|
|
|
2016-05-09 17:57:13 +00:00
|
|
|
|
|
|
|
main() {
|
|
|
|
if [ -n "$SALTMINION_DEBUG" ]; then
|
|
|
|
set -x
|
|
|
|
ERROR_TO_DEVNULL="&2"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check to see if --notrim is a valid netstat option
|
|
|
|
if netstat --notrim 2>&1 >/dev/null | grep -q 'unrecognized'; then
|
|
|
|
NS_NOTRIM=''
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Pre-filter for unhandled commands
|
|
|
|
case "$1" in
|
2016-07-28 18:12:45 +00:00
|
|
|
(start|stop|status|restart|condrestart|try-restart) ;;
|
|
|
|
(reload)
|
|
|
|
echo "Can't reload $SERVICE - you must restart it"
|
|
|
|
exit 3
|
|
|
|
;;
|
2016-05-09 17:57:13 +00:00
|
|
|
(*)
|
2016-07-28 18:12:45 +00:00
|
|
|
echo "Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload}"
|
|
|
|
exit 2
|
|
|
|
;;
|
2016-05-09 17:57:13 +00:00
|
|
|
esac
|
|
|
|
|
|
|
|
while read MINION_USER CONFIG_DIR; do
|
|
|
|
if [ -z "$CONFIG_DIR" ]; then
|
|
|
|
continue
|
2011-04-03 05:02:48 +00:00
|
|
|
fi
|
2016-05-09 17:57:13 +00:00
|
|
|
|
|
|
|
if ! [ -d "$CONFIG_DIR" ]; then
|
|
|
|
echo "ERROR: non-existent $SERVICE config directory: $CONFIG_DIR"
|
|
|
|
RETVAL=1
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
SOCK_DIR="$(_get_salt_config_value sock_dir)"
|
|
|
|
PID_FILE="$(_get_salt_config_value pidfile)"
|
|
|
|
LOG_FILE="$(_get_salt_config_value log_file)"
|
|
|
|
MINION_ID="$(_get_salt_config_value id)"
|
|
|
|
MINION_ID_HASH="$(_make_id_hash "$MINION_ID")"
|
|
|
|
if [ \
|
|
|
|
-z "$SOCK_DIR" \
|
|
|
|
-o -z "$PID_FILE" \
|
|
|
|
-o -z "$LOG_FILE" \
|
|
|
|
-o -z "$MINION_ID" \
|
|
|
|
-o -z "$MINION_ID_HASH" \
|
|
|
|
]; then
|
|
|
|
echo "ERROR: Unable to look-up config values for $CONFIG_DIR"
|
|
|
|
RETVAL=1
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
# See how we were called.
|
|
|
|
case "$1" in
|
|
|
|
(start|stop|restart|status)
|
|
|
|
"$1" || RETVAL=$?
|
|
|
|
;;
|
|
|
|
(condrestart|try-restart)
|
|
|
|
if ! _is_running; then
|
|
|
|
RETVAL=7
|
|
|
|
else
|
|
|
|
stop
|
|
|
|
start || RETVAL=$?
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
(*)
|
|
|
|
echo "Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload}"
|
|
|
|
RETVAL=2
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done <<EOF
|
|
|
|
$SALTMINION_CONFIGS
|
|
|
|
EOF
|
|
|
|
|
|
|
|
exit $RETVAL
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if [ "$#" = 0 ]; then
|
|
|
|
main
|
|
|
|
else
|
|
|
|
main "$@"
|
|
|
|
fi
|