aboutsummaryrefslogtreecommitdiffstats
path: root/src/msec/msecgui
blob: 72d21f89edd085861f43c8b581e1f541a4ebe970 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/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