You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
flight/linux_server_install.sh

9 lines
246 B
Bash

#!/usr/bin/env bash
systemctl stop flight || exit 1
./build_linux_server_release.sh || exit 1
cp flight.service /etc/systemd/system/ || exit 1
systemctl enable flight || exit 1
systemctl start flight || exit 1
systemctl restart flight || exit 1