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