mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-11-22 08:56:58 -06:00
19 lines
899 B
Bash
19 lines
899 B
Bash
#!/bin/bash
|
|
|
|
# install veilid via the debian package method
|
|
wget -O- https://packages.veilid.net/gpg/veilid-packages-key.public | sudo gpg --dearmor -o /usr/share/keyrings/veilid-packages-keyring.gpg
|
|
echo "deb [arch=arm64 signed-by=/usr/share/keyrings/veilid-packages-keyring.gpg] https://packages.veilid.net/apt stable main" | sudo tee /etc/apt/sources.list.d/veilid.list 1>/dev/null
|
|
apt update
|
|
apt install veilid-server veilid-cli
|
|
|
|
# install unifios-utilities (this allows us to enable "on boot" scripts)
|
|
curl -fsL "https://raw.githubusercontent.com/unifi-utilities/unifios-utilities/HEAD/on-boot-script/remote_install.sh" | /bin/bash
|
|
|
|
# create an on-boot script that will start veilid-server when this device is first booted, then start the server
|
|
cat > /data/on_boot.d/veilid.sh<< EOF
|
|
#!/bin/bash
|
|
sudo -u veilid veilid-server &
|
|
EOF
|
|
chmod +x /data/on_boot.d/veilid.sh
|
|
./data/on_boot.d/veilid.sh
|