diff options
author | Joerg Schirottke <master@kanotix.com> | 2013-11-19 17:43:43 +0100 |
---|---|---|
committer | Holger Paradies <retabell@gmx.de> | 2013-11-24 22:25:46 +0100 |
commit | 9bc702311f45bd061ef66b5944c960d1af44eb97 (patch) | |
tree | 4e7a2f7513d4d59d618d5619be08ccebe7edf201 /config/chroot_local-includes | |
parent | 66bd3d5f7fea7bcaf778c0b1bf7d1536c46182f0 (diff) | |
download | kanotix-9bc702311f45bd061ef66b5944c960d1af44eb97.zip kanotix-9bc702311f45bd061ef66b5944c960d1af44eb97.tar.gz |
google chrome/earth/talkplugin hacks
Diffstat (limited to 'config/chroot_local-includes')
-rwxr-xr-x | config/chroot_local-includes/lib/live/config/9010-hotfixes | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/config/chroot_local-includes/lib/live/config/9010-hotfixes b/config/chroot_local-includes/lib/live/config/9010-hotfixes index 5cf3b53..edd86c4 100755 --- a/config/chroot_local-includes/lib/live/config/9010-hotfixes +++ b/config/chroot_local-includes/lib/live/config/9010-hotfixes @@ -43,6 +43,33 @@ sudo perl -pi -e 's/tty/xty/g' /var/run/utmp EOF chmod +x /home/${LIVE_USERNAME}/.kde/shutdown/kdm-force-shutdown-hack +# google chrome hack +if [ -x /var/lib/dpkg/info/google-chrome-stable.postinst ]; then +cat <<EOT >/etc/apt/sources.list.d/google-chrome.list +### THIS FILE IS AUTOMATICALLY CONFIGURED ### +# You may comment out this entry, but any other modifications may be lost. +deb http://dl.google.com/linux/chrome/deb/ stable main +EOT +fi + +# google earth hack +if [ -x /var/lib/dpkg/info/google-earth-stable.postinst ]; then +cat <<EOT >/etc/apt/sources.list.d/google-earth.list +### THIS FILE IS AUTOMATICALLY CONFIGURED ### +# You may comment out this entry, but any other modifications may be lost. +deb http://dl.google.com/linux/earth/deb/ stable main +EOT +fi + +# google talkplugin hack +if [ -x /var/lib/dpkg/info/google-talkplugin.postinst ]; then +cat <<EOT >/etc/apt/sources.list.d/google-talkplugin.list +### THIS FILE IS AUTOMATICALLY CONFIGURED ### +# You may comment out this entry, but any other modifications may be lost. +deb http://dl.google.com/linux/talkplugin/deb/ stable main +EOT +fi + # reconfigure console-setup rm -f /etc/default/console-setup . /etc/default/locale |