aboutsummaryrefslogtreecommitdiffstats
path: root/src/msec/msecgui
blob: b7c9162a3c201f61346a4fa618f0f6dbc787e54b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
#
# Wrapper for msecgui
#

if [ "`whoami`" != "root" ]; then
    echo 'msec: sorry, you must be root !'
    exit 1
fi

MSEC=/usr/share/msec/msecgui.py
OPT="$@"

exec $MSEC $OPT

# msec ends here