2022-09-14 21:35:38 +00:00
|
|
|
#!/bin/bash
|
|
|
|
. /etc/profile
|
|
|
|
|
|
|
|
if [ "${UI_SERVICE}" = "weston.service" ]
|
|
|
|
then
|
|
|
|
weston-terminal --command="${1}"
|
|
|
|
else
|
|
|
|
systemctl stop ${UI_SERVICE}
|
2022-09-16 11:17:20 +00:00
|
|
|
exec 1>/dev/console
|
|
|
|
exec 2>/dev/null
|
|
|
|
${1}
|
2022-09-14 21:35:38 +00:00
|
|
|
fi
|
|
|
|
if [ ! "${UI_SERVICE}" = "weston.service" ]
|
|
|
|
then
|
|
|
|
systemctl start ${UI_SERVICE}
|
|
|
|
fi
|