neb/tools/server-setup.sh

39 lines
762 B
Bash
Executable file

#!/bin/sh
# setup server
## PREFLIGHT
ORIGIN_PWD="$PWD"
if ! [ "$(id -u)" = "0" ]; then
echo "please perform as root, attempting to escalate privileges..."
exec sudo $(cat /proc/$$/cmdline | sed 's/\x00/ /g')
exit 1
fi
echo "testing git connection..."
if ! ssh git@git.ixvd.net &>/tmp/$$-ssh-output; then
echo "can't connect to git, please setup ssh (logs: /tmp/$$-ssh-output)"
exit 1
fi
rm /tmp/$$-ssh-output
## MAIN
set -e
if [ -d "servers/$HOSTNAME/setup.d" ]; then
echo "running server specific setup scripts..."
cd servers/$HOSTNAME
for s in setup.d/*; do
echo "running (servers/$HOSTNAME/)$s..."
sh $s
done
cd -
fi
for s in tools/server-setup.d/*; do
echo "running $s..."
sh $s
done