#!/bin/sh
if [ $(id -u) -ne 0 ]; then
    echo "Skript has to be run as root"
    exit
fi
qshutdown

