X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bdeck_id%7D%7D/cards/%7B%7Bcard_id%7D%7D/static/gitweb.js?a=blobdiff_plain;f=jessie_postinstall.sh;h=08b34ab8367819c35cdecc8816c96583da5a9c5d;hb=70a844d0728f2664069a55dcf38c33e5a41ed70f;hp=007d594a4ed8605347a2c83238997bb46b941df7;hpb=baf69e50267bb32369c2d89dda091f41f70cf418;p=config diff --git a/jessie_postinstall.sh b/jessie_postinstall.sh index 007d594..08b34ab 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 + echo "$ip $2 $hostname" >> /etc/hosts # Call dhclient on startup. cat > /etc/systemd/system/dhclient.service << EOF @@ -65,10 +82,8 @@ echo 'deb http://security.debian.org/ jessie/updates main contrib non-free' \ echo 'deb http://ftp.debian.org/debian/ jessie-updates main contrib non-free' \ >> /etc/apt/sources.list if [ "$1" = "thinkpad" ]; then - if [ "$2" = "T450s" ]; then - echo 'deb http://ftp.debian.org/debian/ jessie-backports main contrib' \ + echo 'deb http://ftp.debian.org/debian/ jessie-backports main contrib' \ ' non-free' >> /etc/apt/sources.list - fi echo 'deb http://ftp.debian.org/debian/ testing main contrib non-free' \ >> /etc/apt/sources.list echo 'deb http://security.debian.org/ testing/updates main contrib' \ @@ -138,7 +153,7 @@ 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 # Set up editor. mkdir -p .vimbackups @@ -205,26 +220,28 @@ elif [ "$1" = "thinkpad" ]; then amixer -c 0 sset Master playback 100% unmute elif [ "$2" = "T450s" ]; then amixer -c 1 sset Master playback 100% unmute + # Re-order souncards so the commonly used one is the first one. + echo 'options snd_hda_intel index=1,0' >> /etc/modprobe.d/sound.conf fi # Set up window system, i3, redshift. apt-get -y install xserver-xorg xinit xterm i3 i3status dmenu redshift # Set up OpenGL and hardware acceleration. - if [ "$1" = "X220s" ]; then - apt-get -y install libgl1-mesa-dri + if [ "$2" = "X200s" ]; then 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 # Set up pentadactyl. apt-get -y install iceweasel - apt-get -y -t testing install xul-ext-pentadactyl + apt-get -y -t jessie-backports install xul-ext-pentadactyl apt-get -y install vim-gtk su plom -c 'mkdir -p /home/plom/downloads/'