]> git.wh0rd.org - home.git/blame - .bin/goobuntu-vapier-setup
gitignore update
[home.git] / .bin / goobuntu-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
87a4c624 34 yakuake
cdabee74 35 xscreensaver
87a4c624 36
c36703e8
MF
37 autoconf
38 automake
2c94c584
MF
39 bison
40 ccache
c36703e8 41 dejagnu
684639b1 42 diffstat
2c94c584 43 flex
87a4c624 44 git
dc93d0d6 45 git-email
02fe2a67 46 git-svn
87a4c624
MF
47 gdb
48 keychain
c36703e8 49 libtool
36cfc192 50 nfs-common
d25382c2 51 pax-utils
d5c95d33 52 screen
87a4c624 53 strace
02fe2a67 54 subversion
c36703e8 55 texinfo
87a4c624 56 tree
f76b755f
MF
57
58 {g,c}kermit
59 minicom
60 netcat
61 nfs-kernel-server
ed5059f6 62 qemu
f76b755f
MF
63 rsh-client
64 telnet-ssl
65 tftp{,d}-hpa
66 wireshark
67 xinetd
2c94c584 68
cdabee74
MF
69 adb
70 fastboot
ed5059f6 71
2c94c584
MF
72 device-tree-compiler
73 libfdt-dev
74 libftdi-dev
75 liblzma-dev
76 libpixman-1-dev
77 libreadline-dev
78 libsdl1.2-dev
79 libusb-1.0-0-dev
dc93d0d6 80 python-beautifulsoup
2c94c584
MF
81 python-dev
82 zlib1g-dev
87a4c624
MF
83)
84sudo bash -c '
85set -x
d25382c2
MF
86goobuntu-config -U set custom_etc_sudoers_d true
87printf "Defaults !tty_tickets\nDefaults timestamp_timeout=360\n" > /etc/sudoers.d/vapier
88chmod 440 /etc/sudoers.d/vapier
87a4c624 89
367831fb 90apt-get -y purge zeitgeist*
cdabee74 91apt-get -y purge thunderbird evolution
d25382c2
MF
92apt-get -y purge google-chrome-beta
93apt-get -y install google-chrome-unstable
94apt-get -y install "$@"
87a4c624 95
d25382c2 96goobuntu-updater
cdabee74 97goobuntu-remote-unlock enroll
87a4c624 98
d25382c2 99ln -sf ~vapier/.profile.d/ROOT-bash_profile ~root/.bash_profile
87a4c624 100for f in .gitconfig .inputrc .nanorc ; do
d25382c2
MF
101 ln -sf ~vapier/${f} ~root/${f}
102done
103rm -f ~root/.profile
87a4c624
MF
104echo . ~vapier/.profile.d/ROOT-bashrc > ~root/.bashrc
105
d25382c2
MF
106echo -g > /etc/ps1_append
107
87a4c624 108rm -f /cros
cdabee74 109#ln -s /usr/local/src/chromiumos/cros-signing /cros
87a4c624 110' bash "${pkgs[@]}"