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