Updates to enable and start the dump1090-fa service post install

This commit is contained in:
Jeff Deaton 2019-10-07 22:00:55 -06:00
parent eb74ccc1b1
commit 69eee8fcc1
1 changed files with 9 additions and 0 deletions

View File

@ -82,6 +82,15 @@ case "$1" in
fi
fi
# enabling and starting the dump1090-fa service
echo "Unmasking the dump1090-fa service..." >&2
systemctl unmask dump1090-fa
echo "Enabling the dump1090-fa service..." >&2
systemctl enable dump1090-fa
echo "Starting the dump1090-fa service..." >&2
systemctl restart dump1090-fa
;;
abort-upgrade|abort-remove|abort-deconfigure)