]> git.wh0rd.org - home.git/blame - .bin/goobuntu-vapier-setup
use newer ipython version flags
[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
d5c95d33 33 screen
87a4c624 34 strace
c36703e8 35 texinfo
87a4c624
MF
36 tree
37)
38sudo bash -c '
39set -x
d25382c2
MF
40goobuntu-config -U set custom_etc_sudoers_d true
41printf "Defaults !tty_tickets\nDefaults timestamp_timeout=360\n" > /etc/sudoers.d/vapier
42chmod 440 /etc/sudoers.d/vapier
87a4c624 43
d25382c2
MF
44apt-get -y purge google-chrome-beta
45apt-get -y install google-chrome-unstable
46apt-get -y install "$@"
87a4c624 47
d25382c2 48goobuntu-updater
87a4c624 49
d25382c2 50ln -sf ~vapier/.profile.d/ROOT-bash_profile ~root/.bash_profile
87a4c624 51for f in .gitconfig .inputrc .nanorc ; do
d25382c2
MF
52 ln -sf ~vapier/${f} ~root/${f}
53done
54rm -f ~root/.profile
87a4c624
MF
55echo . ~vapier/.profile.d/ROOT-bashrc > ~root/.bashrc
56
d25382c2
MF
57echo -g > /etc/ps1_append
58
87a4c624
MF
59rm -f /cros
60ln -s /usr/local/src/chromiumos/cros-signing /cros
61' bash "${pkgs[@]}"