]> git.wh0rd.org - home.git/blame - .bin/goobuntu-vapier-setup
install autotools
[home.git] / .bin / goobuntu-vapier-setup
CommitLineData
87a4c624
MF
1#!/bin/bash
2pkgs=(
3 clusterssh
4 fetchotp
d25382c2 5 pavucontrol
87a4c624
MF
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
c36703e8
MF
24 autoconf
25 automake
26 dejagnu
d25382c2 27 ccache
87a4c624
MF
28 git
29 gdb
30 keychain
c36703e8 31 libtool
d25382c2 32 pax-utils
87a4c624 33 strace
c36703e8 34 texinfo
87a4c624
MF
35 tree
36)
37sudo bash -c '
38set -x
d25382c2
MF
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
87a4c624 42
d25382c2
MF
43apt-get -y purge google-chrome-beta
44apt-get -y install google-chrome-unstable
45apt-get -y install "$@"
87a4c624 46
d25382c2 47goobuntu-updater
87a4c624 48
d25382c2 49ln -sf ~vapier/.profile.d/ROOT-bash_profile ~root/.bash_profile
87a4c624 50for f in .gitconfig .inputrc .nanorc ; do
d25382c2
MF
51 ln -sf ~vapier/${f} ~root/${f}
52done
53rm -f ~root/.profile
87a4c624
MF
54echo . ~vapier/.profile.d/ROOT-bashrc > ~root/.bashrc
55
d25382c2
MF
56echo -g > /etc/ps1_append
57
87a4c624
MF
58rm -f /cros
59ln -s /usr/local/src/chromiumos/cros-signing /cros
60' bash "${pkgs[@]}"