installer and updater
This commit is contained in:
18
update.sh
Executable file
18
update.sh
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
[[ $UID -eq 0 ]] || {
|
||||
echo Run as root to install in /usr/local/bin >&2
|
||||
exit 1
|
||||
}
|
||||
which curl &>/dev/null || {
|
||||
echo No curl command found, can not update >&2
|
||||
exit 1
|
||||
}
|
||||
set -e
|
||||
for f in nando nandod nando-desc nando-stats; do
|
||||
curl -s https://bitbucket.org/MoonQ/nando/raw/tip/$f > /usr/local/bin/$f
|
||||
chmod a+rx /usr/local/bin/"$f"
|
||||
done
|
||||
echo "Copy https://bitbucket.org/MoonQ/nando/raw/tip/etc/nandorc.example to /etc/nandorc and edit it!"
|
||||
curl -s https://bitbucket.org/MoonQ/nando/raw/tip/etc/nandorc.example
|
||||
|
||||
Reference in New Issue
Block a user