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