]> git.wh0rd.org - home.git/blame - .bin/goobuntu-vapier-setup
g4: add up=upload alias
[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
12021af1 20 mplayer
87a4c624
MF
21 nxclient
22 pidgin
23 pidgin-otr
12021af1 24 vlc
87a4c624
MF
25 wmctrl
26 xchat
27 xrestop
28 yakuake
29
c36703e8
MF
30 autoconf
31 automake
32 dejagnu
684639b1 33 diffstat
d25382c2 34 ccache
87a4c624 35 git
02fe2a67 36 git-svn
87a4c624
MF
37 gdb
38 keychain
c36703e8 39 libtool
36cfc192 40 nfs-common
d25382c2 41 pax-utils
d5c95d33 42 screen
87a4c624 43 strace
02fe2a67 44 subversion
c36703e8 45 texinfo
87a4c624 46 tree
f76b755f
MF
47
48 {g,c}kermit
49 minicom
50 netcat
51 nfs-kernel-server
52 rsh-client
53 telnet-ssl
54 tftp{,d}-hpa
55 wireshark
56 xinetd
87a4c624
MF
57)
58sudo bash -c '
59set -x
d25382c2
MF
60goobuntu-config -U set custom_etc_sudoers_d true
61printf "Defaults !tty_tickets\nDefaults timestamp_timeout=360\n" > /etc/sudoers.d/vapier
62chmod 440 /etc/sudoers.d/vapier
87a4c624 63
d25382c2
MF
64apt-get -y purge google-chrome-beta
65apt-get -y install google-chrome-unstable
66apt-get -y install "$@"
87a4c624 67
d25382c2 68goobuntu-updater
87a4c624 69
d25382c2 70ln -sf ~vapier/.profile.d/ROOT-bash_profile ~root/.bash_profile
87a4c624 71for f in .gitconfig .inputrc .nanorc ; do
d25382c2
MF
72 ln -sf ~vapier/${f} ~root/${f}
73done
74rm -f ~root/.profile
87a4c624
MF
75echo . ~vapier/.profile.d/ROOT-bashrc > ~root/.bashrc
76
d25382c2
MF
77echo -g > /etc/ps1_append
78
87a4c624
MF
79rm -f /cros
80ln -s /usr/local/src/chromiumos/cros-signing /cros
81' bash "${pkgs[@]}"