]> git.wh0rd.org - home.git/blame - .bin/glinux-vapier-setup
glinux-vapier-setup: update to latest glinux
[home.git] / .bin / glinux-vapier-setup
CommitLineData
87a4c624
MF
1#!/bin/bash
2pkgs=(
dc93d0d6 3 cifs-utils
87a4c624 4 clusterssh
f01b8ca8 5 iotop
12021af1 6 ipython
d25382c2 7 pavucontrol
87a4c624 8 pssh
367831fb 9 pylint
87a4c624 10 python-mox
367831fb 11 python-mock
87a4c624
MF
12 python-protobuf
13 sharutils
14 unzip
15
cdabee74
MF
16 goobuntu-remote-unlock
17
87a4c624 18 xfce4
87a4c624 19
14031d68 20 elinks
f01b8ca8
MF
21 feh
22 gimp
87a4c624 23 gkrellm
686762d9 24 gtk-redshift
dc93d0d6 25 inkscape
12021af1 26 mplayer
87a4c624
MF
27 pidgin
28 pidgin-otr
12021af1 29 vlc
87a4c624 30 wmctrl
cdabee74 31 hexchat
87a4c624 32 xrestop
cdabee74 33 konsole
c304d23b 34 okular
87a4c624 35 yakuake
cdabee74 36 xscreensaver
87a4c624 37
c36703e8
MF
38 autoconf
39 automake
2c94c584
MF
40 bison
41 ccache
c36703e8 42 dejagnu
684639b1 43 diffstat
2c94c584 44 flex
87a4c624 45 git
dc93d0d6 46 git-email
02fe2a67 47 git-svn
87a4c624
MF
48 gdb
49 keychain
c36703e8 50 libtool
36cfc192 51 nfs-common
d25382c2 52 pax-utils
d5c95d33 53 screen
87a4c624 54 strace
02fe2a67 55 subversion
c36703e8 56 texinfo
87a4c624 57 tree
f76b755f
MF
58
59 {g,c}kermit
60 minicom
61 netcat
62 nfs-kernel-server
ed5059f6 63 qemu
f76b755f
MF
64 rsh-client
65 telnet-ssl
66 tftp{,d}-hpa
67 wireshark
68 xinetd
2c94c584 69
cdabee74
MF
70 adb
71 fastboot
ed5059f6 72
2c94c584
MF
73 device-tree-compiler
74 libfdt-dev
75 libftdi-dev
76 liblzma-dev
77 libpixman-1-dev
78 libreadline-dev
79 libsdl1.2-dev
80 libusb-1.0-0-dev
dc93d0d6 81 python-beautifulsoup
2c94c584
MF
82 python-dev
83 zlib1g-dev
87a4c624
MF
84)
85sudo bash -c '
86set -x
d25382c2
MF
87goobuntu-config -U set custom_etc_sudoers_d true
88printf "Defaults !tty_tickets\nDefaults timestamp_timeout=360\n" > /etc/sudoers.d/vapier
89chmod 440 /etc/sudoers.d/vapier
87a4c624 90
367831fb 91apt-get -y purge zeitgeist*
cdabee74 92apt-get -y purge thunderbird evolution
d25382c2
MF
93apt-get -y purge google-chrome-beta
94apt-get -y install google-chrome-unstable
95apt-get -y install "$@"
87a4c624 96
d25382c2 97goobuntu-updater
cdabee74 98goobuntu-remote-unlock enroll
87a4c624 99
d25382c2 100ln -sf ~vapier/.profile.d/ROOT-bash_profile ~root/.bash_profile
87a4c624 101for f in .gitconfig .inputrc .nanorc ; do
d25382c2
MF
102 ln -sf ~vapier/${f} ~root/${f}
103done
104rm -f ~root/.profile
87a4c624
MF
105echo . ~vapier/.profile.d/ROOT-bashrc > ~root/.bashrc
106
d25382c2
MF
107echo -g > /etc/ps1_append
108
87a4c624 109rm -f /cros
cdabee74 110#ln -s /usr/local/src/chromiumos/cros-signing /cros
87a4c624 111' bash "${pkgs[@]}"