X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=jessie_postinstall.sh;h=63f39ad85186c8a10995f9d40283a1b089605b2c;hb=94b3161208467dad8f712c49d83fe874ed2d8715;hp=5305c14b78fb08879615d668077cef2586df03f9;hpb=0618514bef4ecff4a69bf5312dd7a75073be0859;p=config diff --git a/jessie_postinstall.sh b/jessie_postinstall.sh index 5305c14..63f39ad 100755 --- a/jessie_postinstall.sh +++ b/jessie_postinstall.sh @@ -218,18 +218,40 @@ if [ "$1" = "server" ]; then config/bin/simplemail.sh config/mails/server_postinstall_finished elif [ "$2" = "public" ]; then - # Set up twtxt environment. + + # 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 'git clone https://github.com/plomlompom/htwtxt $GOPATH/src/htwtxt' su - plom -c 'go get htwtxt' path=`su - plom -c 'echo $GOPATH/bin/htwtxt'` - setcap 'cap_net_bind_service=+ep' $path + #setcap 'cap_net_bind_service=+ep' $path su - plom -c 'mkdir -p ~/htwtxt' 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 + su - plom -c 'cd && git clone http://github.com/plomlompom/plomlombot-irc' + su - plom -c 'mkdir -p ~/plomlombot_db' + cp config/systemfiles/plomlombot.service \ + /etc/systemd/system/plomlombot.service + systemctl enable /etc/systemd/system/plomlombot.service + + # 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 @@ -288,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."