summaryrefslogtreecommitdiffstats
path: root/abs/core/LinHES-system/mythfrontend-start
blob: 320f9606541b07bbfc5bd696cd8ae1155db3c887 (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
#!/bin/bash
PIDS=$(pidof mythfrontend)
P_array=( $PIDS )
let "instances = ${#P_array[*]}"  # Count elements.

STARTCMD="/usr/bin/mythfrontend -d --syslog local6"

if [ $instances -gt 0 ];
then
    if [ $instances -eq 1 ]; then
        diagtext="is already a MythFrontend"
    else
        diagtext="are already $instances MythFrontends"
    fi

    question="There $diagtext running. Do you really want to start another one?"  
    mythvantage -Q "${question}"
    if [ $?  = 16 ] 
    then
        $STARTCMD 2>&1
    fi
else
    $STARTCMD 2>&1
fi