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