Optimizing scripts

pull/2100/head
skiffer-git 2 years ago
parent 8c8a0232d9
commit 52034e2db0

@ -599,11 +599,9 @@ openim::util::stop_services_with_name() {
# An array to collect information about processes that were stopped.
local stopped=()
echo "Stopping services with names: $*"
# Iterate over each given service name.
for server_name in "$@"; do
# Use the `pgrep` command to find process IDs related to the given service name.
echo "Stopping services with name: $server_name"
local pids=$(pgrep -f "$server_name")
echo "Stopping services with name: $server_name "$pids
@ -624,7 +622,7 @@ openim::util::stop_services_with_name() {
if [[ -n $pid ]]; then
# Print the binary path for the PID
binary_path=$(readlink -f /proc/$pid/exe)
echo "PID $pid corresponds to binary path: $binary_path"
openim::log::colorless "stop PID $pid path: $binary_path"
# Try to stop the service by killing its process.
if kill -15 $pid 2>/dev/null; then

Loading…
Cancel
Save