X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/add_free?a=blobdiff_plain;f=jessie_postinstall.sh;h=277ab39cffbcb8bb5f97fec5c909b9c354387d8b;hb=5600007ee1f299efe17630f226f7cbd2c8682053;hp=821b4b3f76bf7057f2194f978f24e92151030821;hpb=84a077763b6d9663a5d82835a484e1b55a199ee5;p=config diff --git a/jessie_postinstall.sh b/jessie_postinstall.sh index 821b4b3..277ab39 100755 --- a/jessie_postinstall.sh +++ b/jessie_postinstall.sh @@ -26,7 +26,7 @@ if [ "$3" = "plomlompom.com" ]; then elif [ "$3" = "test.plomlompom.com" ]; then hostname="test.plomlompom" elif [ "$2" = "public" ]; then - hostname="twtxt.plomlompom" + hostname="htwtxt.plomlompom" elif [ "$2" = "X200s" ]; then hostname="X220s" elif [ "$2" = "T450s" ]; then @@ -219,8 +219,8 @@ if [ "$1" = "server" ]; then elif [ "$2" = "public" ]; then - # Set up htwtxt environment. - apt-get -y install screen nginx + # Set up htwtxt and environment. + apt-get -y install screen apt-get -y -t jessie-backports install golang su - plom -c 'git clone https://github.com/plomlompom/htwtxt $GOPATH/src/htwtxt' su - plom -c 'go get htwtxt' @@ -230,7 +230,13 @@ if [ "$1" = "server" ]; then cp config/systemfiles/htwtxt_restart_reminder.service \ /etc/systemd/system/htwtxt_restart_reminder.service systemctl enable /etc/systemd/system/htwtxt_restart_reminder.service + + # Set up nginx and letsencrypt. + apt-get -y install nginx cp config/systemfiles/nginx.conf /etc/nginx/nginx.conf + cd ~ + git clone https://github.com/letsencrypt/letsencrypt + echo '0 18 * * 0 ~/config/bin/renew_certs.sh' | crontab - # Set up plomlombot. apt-get -y install python3 python3-venv python3-pip @@ -239,8 +245,13 @@ if [ "$1" = "server" ]; then cp config/systemfiles/plomlombot.service \ /etc/systemd/system/plomlombot.service systemctl enable /etc/systemd/system/plomlombot.service - mkdir /var/www/irclogs_zrolaps/ + + # Set up plomlombot logging infrastructure. + mkdir -p /var/www/html/irclogs/ + ln -s /home/plom/plomlombot_db/6f322d574618816aa2d6d1ceb4fd2551/3c0248e76a1de3a6ee5bf3421f7379b0/logs/ /var/www/html/irclogs/zrolaps touch /var/www/password_irclogs_zrolaps + ln -s /home/plom/plomlombot_db/6f322d574618816aa2d6d1ceb4fd2551/657eea42f86866f2954d39f92a6c71ff/logs/ /var/www/html/irclogs/nodrama.de + touch /var/www/password_irclogs_nodrama_de fi elif [ "$1" = "thinkpad" ]; then @@ -299,4 +310,4 @@ passwd plom rm jessie_postinstall.sh # Finalize everything with a reboot. -reboot +echo "You may reboot now with the 'reboot' command unless there's more to do."