X-Git-Url: https://plomlompom.com/repos/bar%20baz.html?a=blobdiff_plain;f=jessie_postinstall.sh;h=2d01b518c6a979f4869306a863e2199aa56d5205;hb=00ca69c32a596e02eeafd60a9a5008d39e114eca;hp=fb4161fd2a00114fcfb80087c8f9ebb62ae25ea6;hpb=f07fd22fb7962b10fa89b73ba3e4dd1f5a49db50;p=config diff --git a/jessie_postinstall.sh b/jessie_postinstall.sh index fb4161f..2d01b51 100755 --- a/jessie_postinstall.sh +++ b/jessie_postinstall.sh @@ -12,6 +12,23 @@ if [ "$1" = "thinkpad" ] && [ ! "$2" = "X200s" ] && [ ! "$2" = "T450s" ]; then false fi +if [ "$1" = "server" ] && [ ! "$2" = "plomlompom.com" ] && \ + [ ! "$2" = "test.plomlompom.com" ]; then + echo "Need server type." + false +fi + +# Some important variables +if [ "$2" = "plomlompom.com" ]; then + hostname="plomlompom" +elif [ "$2" = "test.plomlompom.com" ]; then + hostname="test.plomlompom" +elif [ "$2" = "X200s" ]; then + hostname="X220s" +elif [ "$2" = "T450s" ]; then + hostname="T450s" +fi + if [ "$1" = "server" ]; then # Set root pw. passwd @@ -35,13 +52,13 @@ rm list_all_packages list_white_unsorted list_white list_black echo 'APT::Install-Recommends "false";' >> /etc/apt/apt.conf.d/99mindeps echo 'APT::Install-Suggests "false";' >> /etc/apt/apt.conf.d/99mindeps +# Set hostname and FQDN. +echo $hostname > /etc/hostname +hostname $hostname if [ "$1" = "server" ]; then - # 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 + ip=`hostname -I | cut -d " " -f 1` + echo "$ip $2 $hostname" >> /etc/hosts # Call dhclient on startup. cat > /etc/systemd/system/dhclient.service << EOF @@ -136,7 +153,13 @@ config/bin/symlink.sh useradd -m -s /bin/bash plom rm -rf /home/plom/config su - plom -c 'git clone http://github.com/plomlompom/config /home/plom/config' -su plom -c '/home/plom/config/bin/symlink.sh '$1 +su plom -c '/home/plom/config/bin/symlink.sh '$1' '$2 + +# Allow user to sudo. +if [ "$1" = "thinkpad" ]; then + apt-get -y install sudo + adduser plom sudo +fi # Set up editor. mkdir -p .vimbackups @@ -159,6 +182,7 @@ if [ "$1" = "server" ]; then DEBIAN_FRONTEND=noninteractive apt-get -y install getmail4 procmail mutt \ postfix maildrop cp config/systemfiles/main.cf /etc/postfix/main.cf + sed -i 's/HOSTNAME/'$2'/g' /etc/postfix/main.cf cp config/systemfiles/aliases /etc/aliases newaliases service postfix restart @@ -212,12 +236,12 @@ elif [ "$1" = "thinkpad" ]; then # Set up OpenGL and hardware acceleration. if [ "$2" = "X200s" ]; then - apt-get -y install libgl1-mesa-dri apt-get -y install i965-va-driver - usermod -aG video plom elif [ "$2" = "T450s" ]; then apt-get -y -t jessie-backports install xserver-xorg-video-intel fi + apt-get -y install libgl1-mesa-dri + usermod -aG video plom # Install xrandr. apt-get -y install x11-xserver-utils