diff options
-rwxr-xr-x | packaging/wheel.sh | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/packaging/wheel.sh b/packaging/wheel.sh index 06dba49..88a01d2 100755 --- a/packaging/wheel.sh +++ b/packaging/wheel.sh @@ -1,7 +1,8 @@ -systemctl disable ambd.service
-systemctl stop ambd.service
-ambd -D -c /root/ambd/config&
-xset -dpms
-xset s off
-xset s noblank
-webskeleton file:///usr/share/GhostCluster/index.html&
+#!/bin/bash +systemctl disable ambd.service +systemctl stop ambd.service +ambd -D -c /root/ambd/config& +xset -dpms +xset s off +xset s noblank +webskeleton file:///usr/share/GhostCluster/index.html& |