summaryrefslogtreecommitdiffstats
path: root/stap-find-or-start-server
blob: a9a4cde034f824525814a1fd0a603d429597c1d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash

# Find or start a systemtap server
#
# Copyright (C) 2008, 2009 Red Hat Inc.
#
# This file is part of systemtap, and is free software.  You can
# redistribute it and/or modify it under the terms of the GNU General
# Public License (GPL); either version 2, or (at your option) any
# later version.

# This script attempts to find a systemtap server. If one is found, it
# echoes 0.
#
# Otherwise, it attempts to start a server. If succesful, it echoes the
# process id.
#
# Otherwise, it echoes -1

# Initialize the environment
. ${PKGLIBEXECDIR}stap-env

# Is there a server available?
${stap_pkglibexecdir}stap-find-servers >/dev/null 2>&1 && echo 0 && exit 0

# No server available, try to start one.
pid=`${stap_pkglibexecdir}stap-start-server "$@"`
if test $? = 0; then
    echo $pid
    exit 0
fi

# Could not find or start a server
echo "-1"
exit 0