mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-07-13 20:41:23 +02:00
49 lines
1.6 KiB
Bash
Executable File
49 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright Security Onion Solutions LLC and/or licensed to Security Onion Solutions LLC under one
|
|
# or more contributor license agreements. Licensed under the Elastic License 2.0 as shown at
|
|
# https://securityonion.net/license; you may not use this file except in compliance with the
|
|
# Elastic License 2.0.
|
|
|
|
. /usr/sbin/so-common
|
|
|
|
usage() {
|
|
echo "Usage: $0 <component> [args]"
|
|
echo ""
|
|
echo "Supported args:"
|
|
echo " --force | -f Force stop all Salt jobs before starting component."
|
|
echo ""
|
|
echo "Examples:"
|
|
echo " $0 kibana Restart Kibana"
|
|
echo " $0 kibana --force Force stop all Salt jobs before restarting Kibana"
|
|
exit 1
|
|
}
|
|
|
|
if [[ $# -lt 1 ]]; then
|
|
usage
|
|
fi
|
|
|
|
#shellcheck disable=SC2154
|
|
echo "$banner"
|
|
printf "Restarting %s...\n\nThis could take a while if another Salt job is running. \nRun this command with --force to stop all Salt jobs before proceeding.\n" "$1"
|
|
echo "$banner"
|
|
if [[ "$2" = "--force" ]] || [[ "$2" = "-f" ]]; then
|
|
printf "\nForce-stopping all Salt jobs before proceeding\n\n"
|
|
salt-call saltutil.kill_all_jobs
|
|
fi
|
|
case $1 in
|
|
"elastic-fleet"|"elasticfleet")
|
|
docker_check_running "elastic-fleet" "--stop"
|
|
docker rm "so-elastic-fleet" 2> /dev/null
|
|
# Removing the elastic fleet state directory, so that the next startup re-enrolls with a fresh policy
|
|
rm -rf /opt/so/conf/elastic-fleet/state
|
|
|
|
salt-call state.apply elasticfleet queue=True
|
|
;;
|
|
*)
|
|
docker_check_running "$1" "--stop"
|
|
docker rm "so-${1}" 2> /dev/null
|
|
salt-call state.apply "$1" queue=True
|
|
;;
|
|
esac
|