mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-02 02:39:57 +00:00
11 lines
345 B
Bash
11 lines
345 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
cp release/meshtasticd_linux_arm64 /usr/sbin/meshtasticd
|
||
|
mkdir /etc/meshtasticd
|
||
|
if [[ -f "/etc/meshtasticd/config.yaml" ]]; then
|
||
|
cp bin/config-dist.yaml /etc/meshtasticd/config-upgrade.yaml
|
||
|
else
|
||
|
cp bin/config-dist.yaml /etc/meshtasticd/config.yaml
|
||
|
fi
|
||
|
cp bin/meshtasticd.service /usr/lib/systemd/system/meshtasticd.service
|