]> git.wh0rd.org - home.git/blame - .bin/glinux-vapier-setup
le-renew: do not delete after revocation
[home.git] / .bin / glinux-vapier-setup
CommitLineData
87a4c624
MF
1#!/bin/bash
2pkgs=(
dc93d0d6 3 cifs-utils
87a4c624 4 clusterssh
f01b8ca8 5 iotop
12021af1 6 ipython
d25382c2 7 pavucontrol
87a4c624 8 pssh
367831fb 9 pylint
87a4c624 10 python-mox
367831fb 11 python-mock
87a4c624
MF
12 python-protobuf
13 sharutils
14 unzip
15
cdabee74
MF
16 goobuntu-remote-unlock
17
87a4c624 18 xfce4
0022ab57
MF
19 xfce4-goodies
20 xfce4-power-manager
87a4c624 21
0022ab57 22 dict
14031d68 23 elinks
f01b8ca8
MF
24 feh
25 gimp
87a4c624 26 gkrellm
686762d9 27 gtk-redshift
dc93d0d6 28 inkscape
12021af1 29 mplayer
0022ab57 30 mpv
12021af1 31 vlc
87a4c624 32 wmctrl
cdabee74 33 hexchat
87a4c624 34 xrestop
cdabee74 35 konsole
c304d23b 36 okular
87a4c624 37 yakuake
cdabee74 38 xscreensaver
87a4c624 39
c36703e8
MF
40 autoconf
41 automake
2c94c584
MF
42 bison
43 ccache
c36703e8 44 dejagnu
684639b1 45 diffstat
2c94c584 46 flex
87a4c624 47 git
dc93d0d6 48 git-email
02fe2a67 49 git-svn
87a4c624
MF
50 gdb
51 keychain
c36703e8 52 libtool
36cfc192 53 nfs-common
d25382c2 54 pax-utils
d5c95d33 55 screen
87a4c624 56 strace
02fe2a67 57 subversion
c36703e8 58 texinfo
87a4c624 59 tree
f76b755f
MF
60
61 {g,c}kermit
62 minicom
0022ab57 63 mosh
f76b755f
MF
64 netcat
65 nfs-kernel-server
ed5059f6 66 qemu
f76b755f
MF
67 rsh-client
68 telnet-ssl
69 tftp{,d}-hpa
0022ab57 70 whois
f76b755f
MF
71 wireshark
72 xinetd
2c94c584 73
cdabee74 74 adb
0022ab57
MF
75 # Newer adb packages include fastboot.
76# fastboot
77
78 eterm
79 gnome-terminal
80 mlterm
81 pterm
82 rxvt
83 rxvt-unicode
84 stterm
85 xterm
ed5059f6 86
2c94c584
MF
87 device-tree-compiler
88 libfdt-dev
89 libftdi-dev
90 liblzma-dev
91 libpixman-1-dev
92 libreadline-dev
93 libsdl1.2-dev
94 libusb-1.0-0-dev
dc93d0d6 95 python-beautifulsoup
2c94c584
MF
96 python-dev
97 zlib1g-dev
87a4c624
MF
98)
99sudo bash -c '
0022ab57
MF
100set -ex
101glinux-config -U set custom_etc_sudoers_d true
d25382c2
MF
102printf "Defaults !tty_tickets\nDefaults timestamp_timeout=360\n" > /etc/sudoers.d/vapier
103chmod 440 /etc/sudoers.d/vapier
87a4c624 104
367831fb 105apt-get -y purge zeitgeist*
cdabee74 106apt-get -y purge thunderbird evolution
d25382c2
MF
107apt-get -y purge google-chrome-beta
108apt-get -y install google-chrome-unstable
109apt-get -y install "$@"
87a4c624 110
0022ab57
MF
111glinux-updater
112glinux-remote-unlock enroll
87a4c624 113
d25382c2 114ln -sf ~vapier/.profile.d/ROOT-bash_profile ~root/.bash_profile
87a4c624 115for f in .gitconfig .inputrc .nanorc ; do
d25382c2
MF
116 ln -sf ~vapier/${f} ~root/${f}
117done
118rm -f ~root/.profile
87a4c624
MF
119echo . ~vapier/.profile.d/ROOT-bashrc > ~root/.bashrc
120
d25382c2
MF
121echo -g > /etc/ps1_append
122
87a4c624 123rm -f /cros
cdabee74 124#ln -s /usr/local/src/chromiumos/cros-signing /cros
87a4c624 125' bash "${pkgs[@]}"