]> git.wh0rd.org - home.git/blame - .bin/goobuntu-vapier-setup
install nfs
[home.git] / .bin / goobuntu-vapier-setup
CommitLineData
87a4c624
MF
1#!/bin/bash
2pkgs=(
3 clusterssh
4 fetchotp
12021af1 5 ipython
d25382c2 6 pavucontrol
87a4c624
MF
7 pssh
8 python-mox
9 python-protobuf
10 sharutils
11 unzip
12
13 xfce4
14 kubuntu-desktop
15
16 gkrellm
12021af1 17 mplayer
87a4c624
MF
18 nxclient
19 pidgin
20 pidgin-otr
12021af1 21 vlc
87a4c624
MF
22 wmctrl
23 xchat
24 xrestop
25 yakuake
26
c36703e8
MF
27 autoconf
28 automake
29 dejagnu
d25382c2 30 ccache
87a4c624
MF
31 git
32 gdb
33 keychain
c36703e8 34 libtool
36cfc192 35 nfs-common
d25382c2 36 pax-utils
d5c95d33 37 screen
87a4c624 38 strace
c36703e8 39 texinfo
87a4c624
MF
40 tree
41)
42sudo bash -c '
43set -x
d25382c2
MF
44goobuntu-config -U set custom_etc_sudoers_d true
45printf "Defaults !tty_tickets\nDefaults timestamp_timeout=360\n" > /etc/sudoers.d/vapier
46chmod 440 /etc/sudoers.d/vapier
87a4c624 47
d25382c2
MF
48apt-get -y purge google-chrome-beta
49apt-get -y install google-chrome-unstable
50apt-get -y install "$@"
87a4c624 51
d25382c2 52goobuntu-updater
87a4c624 53
d25382c2 54ln -sf ~vapier/.profile.d/ROOT-bash_profile ~root/.bash_profile
87a4c624 55for f in .gitconfig .inputrc .nanorc ; do
d25382c2
MF
56 ln -sf ~vapier/${f} ~root/${f}
57done
58rm -f ~root/.profile
87a4c624
MF
59echo . ~vapier/.profile.d/ROOT-bashrc > ~root/.bashrc
60
d25382c2
MF
61echo -g > /etc/ps1_append
62
87a4c624
MF
63rm -f /cros
64ln -s /usr/local/src/chromiumos/cros-signing /cros
65' bash "${pkgs[@]}"