X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=jessie_start_server.sh;h=e4ed1727e2e3771f7a87fad7e394205c4c8c3316;hb=e076796196cbad4e49451c266c5561204789f2a2;hp=d05fc073d3523941690bc9e0a0ba78241a5c3149;hpb=1fe431656a52e9195b8c11fcf3e79bd3af7678c4;p=config diff --git a/jessie_start_server.sh b/jessie_start_server.sh index d05fc07..e4ed172 100755 --- a/jessie_start_server.sh +++ b/jessie_start_server.sh @@ -5,7 +5,7 @@ set -e # Set root pw. passwd -# Post-installation reduction. (Answer "no" to GRUB question.) +# Post-installation reduction. dpkg-query -Wf '${Package} ${Priority}\n' | grep ' required' | sed 's/ required//' > list_white_unsorted echo 'ifupdown' >> list_white_unsorted echo 'isc-dhcp-client' >> list_white_unsorted @@ -24,6 +24,7 @@ echo 'APT::Install-Suggests "false";' >> /etc/apt/apt.conf.d/99mindeps # Set hostname and FQDN. echo 'plomlompom' > /etc/hostname +hostname 'plomlompom' echo '127.0.0.1 localhost' > /etc/hosts ip=`hostname -I` echo "$ip plomlompom.com plomlompom" >> /etc/hosts @@ -81,6 +82,9 @@ apt-get -y install vim mkdir -p .vimbackups su plom -c 'mkdir -p /home/plom/.vimbackups/' +# Set up ssh-guard. +apt-get -y install sshguard rsyslog + # Set up openssh-server. apt-get -y install openssh-server @@ -88,26 +92,44 @@ apt-get -y install openssh-server su plom -c 'mkdir -p /home/plom/mail/' su plom -c 'mkdir -p /home/plom/mail/inbox/{cur,new,tmp}' su plom -c 'mkdir -p /home/plom/mail/new_inbox/{cur,new,tmp}' -echo 'plomlompom.com' > /etc/mailname +sed -i 's/^delete = true$/delete = false/g' /home/plom/config/dotfiles_user_server/getmail/getmailrc DEBIAN_FRONTEND=noninteractive apt-get -y install getmail4 procmail mutt postfix maildrop cp config/systemfiles/main.cf /etc/postfix/main.cf cp config/systemfiles/aliases /etc/aliases +newaliases service postfix restart -# Set up screen. -apt-get -y install screen +# Set up regular system update reminder. +apt-get -y install cron +su plom -c "echo '0 18 * * 0 ~/config/bin/simplemail.sh ~/config/mails/update_reminder' | crontab -" -# Set up ping. -apt-get -y install iputils-ping +# Set up screen/weechat/OTR/bitlbee. Make bitlbee listen only locally. +apt-get -y install screen weechat-plugins python-potr bitlbee +sed -i 's/^# DaemonInterface/DaemonInterface = 127.0.0.1 # DaemonInterface/' /etc/bitlbee/bitlbee.conf +sedtest=`grep -E '^DaemonInterface = 127.0.0.1 #' /etc/bitlbee/bitlbee.conf | wc -l | cut -d ' ' -f 1` +if [ 0 -eq $sedtest ]; then + false +fi +cp config/systemfiles/weechat.service /etc/systemd/system/weechat.service +systemctl enable /etc/systemd/system/weechat.service +# Set up screen. +#apt-get -y install screen +# +# Set up ping. +#apt-get -y install iputils-ping +# # Set up irssi. -apt-get -y install irssi -cp config/systemfiles/irssi.service /etc/systemd/system/irssi.service -systemctl enable /etc/systemd/system/irssi.service +#apt-get -y install irssi +#cp config/systemfiles/irssi.service /etc/systemd/system/irssi.service +#systemctl enable /etc/systemd/system/irssi.service # Clean up. rm jessie_start_server.sh +# Send instructions mail. +config/bin/simplemail.sh config/mails/server_postinstall_finished + # Set password for user. passwd plom