]> sourceware.org Git - systemtap.git/blame - stap-stop-server
update NEWS for PR24953
[systemtap.git] / stap-stop-server
CommitLineData
0e47827d
DB
1#!/bin/bash
2
3# Start a systemtap server
4#
5# Copyright (C) 2008 Red Hat Inc.
6#
7# This file is part of systemtap, and is free software. You can
8# redistribute it and/or modify it under the terms of the GNU General
9# Public License (GPL); either version 2, or (at your option) any
10# later version.
11
12# This script attempts to stop a systemtap server with the
13# given pid.
14
15# Get the process id.
16pid=$1
17if test "X$pid" = "X"; then
18 echo "Usage: $0 PROCESS_ID" >&2
19 exit 1
20fi
21
22# Verify that it is a systemtap server
f5a40c83 23(ps -e | grep stap-serverd | grep -q $pid)
0e47827d 24if test $? != 0; then
7901b115 25 echo "$pid is not a systemtap server" >&2
0e47827d
DB
26 exit 1
27fi
28
29# Try to kill the server
d364b508
DS
30i=0
31while kill -s SIGTERM $pid > /dev/null 2>&1; do
32 sleep 0.5
33
34 # If we've tried and failed to kill the server for around 10
35 # seconds (20 * 0.5 seconds), quit.
36 i=$((i + 1))
37 if test $i -ge 20; then
38 echo "$pid not shutting down" >&2
39 exit 1
40 break
41 fi
42done
This page took 0.147746 seconds and 5 git commands to generate.