summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/mythtv/stable-0.22/mythsmolt/smolt_init_login.sh
blob: f22a09e4c8c12bfe13a4f5e782d1ed549fab7352 (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
if [ $UID = 0  -o  $UID = 1000 ]
then
    if [ ! -e /home/mythtv/.mythtv/MythSmolt/hw-uuid ]
    then
        echo ""
        echo "####################################################"
        echo "It appears you have not yet run smolt"
        echo "Please take the time to submit your hardware profile"
        echo ""
        echo "press any key to continue:"
        echo "####################################################"
        read a
        if [ $UID = 0 ]
        then
            su   mythtv -c "/usr/share/mythtv/mythsmolt/scripts/sendProfile.py"
            su mythtv -c "touch  /home/mythtv/.mythtv/MythSmolt/hw-uuid"
        else
            /usr/share/mythtv/mythsmolt/scripts/sendProfile.py
            touch  /home/mythtv/.mythtv/MythSmolt/hw-uuid
        fi
        
    fi
fi