You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
342 B
18 lines
342 B
3 days ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
|
||
|
|
||
|
AGNOS_PY=$1
|
||
|
MANIFEST=$2
|
||
|
|
||
|
if [[ ! -f "$AGNOS_PY" || ! -f "$MANIFEST" ]]; then
|
||
|
echo "invalid args"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
if systemctl is-active --quiet weston-ready; then
|
||
|
$DIR/updater_weston $AGNOS_PY $MANIFEST
|
||
|
else
|
||
|
$DIR/updater_magic $AGNOS_PY $MANIFEST
|
||
|
fi
|