15 lines
460 B
Bash
15 lines
460 B
Bash
#!/bin/bash
|
|
# Wrapper script for install, for easier execution via URL.
|
|
|
|
if [ "$EUID" -ne 0 ]; then PREFIX='sudo'; else PREFIX=''; fi
|
|
|
|
$PREFIX set -eu
|
|
# $PREFIX git -c http.sslVerify=false clone https://git.schroedercity.com/voltron/LinUPx.git /opt/LinUPx
|
|
$PREFIX git clone https://git.schroedercity.com/voltron/LinUPx.git /opt/LinUPx
|
|
$PREFIX ln -s /opt/LinUPx/run.sh /usr/local/bin/runup
|
|
|
|
echo ""
|
|
echo "To run updates, use the command: runup"
|
|
echo ""
|
|
echo ""
|