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