X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=jessie_start_server.sh;h=e58f76093c1da0ef02ff95fad17f75af5d5f742e;hb=76537b041c4aae17ed4b30580f3a41d2248a91f2;hp=d3d536716abe2f36482d524599fbe91b138d7ed6;hpb=68e27cdad1b4194244289fe3e5ecc2ffd8dd83d5;p=config diff --git a/jessie_start_server.sh b/jessie_start_server.sh index d3d5367..e58f760 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 @@ -83,10 +83,7 @@ mkdir -p .vimbackups su plom -c 'mkdir -p /home/plom/.vimbackups/' # Set up ssh-guard. -apt-get -y install sshguard rsyslog iptables-persistent -iptables -N sshguard -iptables -A INPUT -j sshguard -iptables save > /etc/iptables/rules.v4 +apt-get -y install sshguard rsyslog # Set up openssh-server. apt-get -y install openssh-server @@ -95,22 +92,35 @@ 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}' +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 tmux. +apt-get -y install tmux + +# Set up weechat, OTR, bitlbee. +apt-get install weechat-plugins python-potr bitlbee +cp config/systemfiles/weechat /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