]> git.wh0rd.org - home.git/commitdiff
glinux-vapier-setup: update to latest glinux
authorMike Frysinger <vapier@gentoo.org>
Fri, 2 Feb 2018 19:52:57 +0000 (14:52 -0500)
committerMike Frysinger <vapier@gentoo.org>
Fri, 2 Feb 2018 19:52:57 +0000 (14:52 -0500)
.bin/glinux-vapier-setup [new file with mode: 0755]
.bin/goobuntu-vapier-setup [deleted file]

diff --git a/.bin/glinux-vapier-setup b/.bin/glinux-vapier-setup
new file mode 100755 (executable)
index 0000000..728db38
--- /dev/null
@@ -0,0 +1,111 @@
+#!/bin/bash
+pkgs=(
+       cifs-utils
+       clusterssh
+       iotop
+       ipython
+       pavucontrol
+       pssh
+       pylint
+       python-mox
+       python-mock
+       python-protobuf
+       sharutils
+       unzip
+
+       goobuntu-remote-unlock
+
+       xfce4
+
+       elinks
+       feh
+       gimp
+       gkrellm
+       gtk-redshift
+       inkscape
+       mplayer
+       pidgin
+       pidgin-otr
+       vlc
+       wmctrl
+       hexchat
+       xrestop
+       konsole
+       okular
+       yakuake
+       xscreensaver
+
+       autoconf
+       automake
+       bison
+       ccache
+       dejagnu
+       diffstat
+       flex
+       git
+       git-email
+       git-svn
+       gdb
+       keychain
+       libtool
+       nfs-common
+       pax-utils
+       screen
+       strace
+       subversion
+       texinfo
+       tree
+
+       {g,c}kermit
+       minicom
+       netcat
+       nfs-kernel-server
+       qemu
+       rsh-client
+       telnet-ssl
+       tftp{,d}-hpa
+       wireshark
+       xinetd
+
+       adb
+       fastboot
+
+       device-tree-compiler
+       libfdt-dev
+       libftdi-dev
+       liblzma-dev
+       libpixman-1-dev
+       libreadline-dev
+       libsdl1.2-dev
+       libusb-1.0-0-dev
+       python-beautifulsoup
+       python-dev
+       zlib1g-dev
+)
+sudo bash -c '
+set -x
+goobuntu-config -U set custom_etc_sudoers_d true
+printf "Defaults !tty_tickets\nDefaults timestamp_timeout=360\n" > /etc/sudoers.d/vapier
+chmod 440 /etc/sudoers.d/vapier
+
+apt-get -y purge zeitgeist*
+apt-get -y purge thunderbird evolution
+apt-get -y purge google-chrome-beta
+apt-get -y install google-chrome-unstable
+apt-get -y install "$@"
+
+goobuntu-updater
+goobuntu-remote-unlock enroll
+
+ln -sf ~vapier/.profile.d/ROOT-bash_profile ~root/.bash_profile
+for f in .gitconfig .inputrc .nanorc ; do
+       ln -sf ~vapier/${f} ~root/${f}
+done
+rm -f ~root/.profile
+echo . ~vapier/.profile.d/ROOT-bashrc > ~root/.bashrc
+
+echo -g > /etc/ps1_append
+
+rm -f /cros
+#ln -s /usr/local/src/chromiumos/cros-signing /cros
+' bash "${pkgs[@]}"
diff --git a/.bin/goobuntu-vapier-setup b/.bin/goobuntu-vapier-setup
deleted file mode 100755 (executable)
index 728db38..0000000
+++ /dev/null
@@ -1,111 +0,0 @@
-#!/bin/bash
-pkgs=(
-       cifs-utils
-       clusterssh
-       iotop
-       ipython
-       pavucontrol
-       pssh
-       pylint
-       python-mox
-       python-mock
-       python-protobuf
-       sharutils
-       unzip
-
-       goobuntu-remote-unlock
-
-       xfce4
-
-       elinks
-       feh
-       gimp
-       gkrellm
-       gtk-redshift
-       inkscape
-       mplayer
-       pidgin
-       pidgin-otr
-       vlc
-       wmctrl
-       hexchat
-       xrestop
-       konsole
-       okular
-       yakuake
-       xscreensaver
-
-       autoconf
-       automake
-       bison
-       ccache
-       dejagnu
-       diffstat
-       flex
-       git
-       git-email
-       git-svn
-       gdb
-       keychain
-       libtool
-       nfs-common
-       pax-utils
-       screen
-       strace
-       subversion
-       texinfo
-       tree
-
-       {g,c}kermit
-       minicom
-       netcat
-       nfs-kernel-server
-       qemu
-       rsh-client
-       telnet-ssl
-       tftp{,d}-hpa
-       wireshark
-       xinetd
-
-       adb
-       fastboot
-
-       device-tree-compiler
-       libfdt-dev
-       libftdi-dev
-       liblzma-dev
-       libpixman-1-dev
-       libreadline-dev
-       libsdl1.2-dev
-       libusb-1.0-0-dev
-       python-beautifulsoup
-       python-dev
-       zlib1g-dev
-)
-sudo bash -c '
-set -x
-goobuntu-config -U set custom_etc_sudoers_d true
-printf "Defaults !tty_tickets\nDefaults timestamp_timeout=360\n" > /etc/sudoers.d/vapier
-chmod 440 /etc/sudoers.d/vapier
-
-apt-get -y purge zeitgeist*
-apt-get -y purge thunderbird evolution
-apt-get -y purge google-chrome-beta
-apt-get -y install google-chrome-unstable
-apt-get -y install "$@"
-
-goobuntu-updater
-goobuntu-remote-unlock enroll
-
-ln -sf ~vapier/.profile.d/ROOT-bash_profile ~root/.bash_profile
-for f in .gitconfig .inputrc .nanorc ; do
-       ln -sf ~vapier/${f} ~root/${f}
-done
-rm -f ~root/.profile
-echo . ~vapier/.profile.d/ROOT-bashrc > ~root/.bashrc
-
-echo -g > /etc/ps1_append
-
-rm -f /cros
-#ln -s /usr/local/src/chromiumos/cros-signing /cros
-' bash "${pkgs[@]}"