summaryrefslogtreecommitdiff
path: root/packages/gwt-chromium/resources/chrome-profile/bin/gwt-chrome-volatile
diff options
context:
space:
mode:
authorYves Fischer <yvesf-git@xapek.org>2015-12-20 18:47:45 +0100
committerYves Fischer <yvesf-git@xapek.org>2015-12-20 18:47:45 +0100
commit570c0a93fb24a393a2bf013a5aad5b6759713ce7 (patch)
tree430499b41b4defac779fa3f3967bf0fa7af9f418 /packages/gwt-chromium/resources/chrome-profile/bin/gwt-chrome-volatile
downloaddebian-packages-570c0a93fb24a393a2bf013a5aad5b6759713ce7.tar.gz
debian-packages-570c0a93fb24a393a2bf013a5aad5b6759713ce7.zip
start migrating from shell scripts
Diffstat (limited to 'packages/gwt-chromium/resources/chrome-profile/bin/gwt-chrome-volatile')
-rwxr-xr-xpackages/gwt-chromium/resources/chrome-profile/bin/gwt-chrome-volatile16
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/gwt-chromium/resources/chrome-profile/bin/gwt-chrome-volatile b/packages/gwt-chromium/resources/chrome-profile/bin/gwt-chrome-volatile
new file mode 100755
index 0000000..99f2a21
--- /dev/null
+++ b/packages/gwt-chromium/resources/chrome-profile/bin/gwt-chrome-volatile
@@ -0,0 +1,16 @@
+#!/bin/sh
+HERE=`dirname "$0"`
+persistent_profile="$HOME/.config/gwt-chrome"
+tmp_profile=`mktemp -d`
+cp -r "$HERE/../chrome-profile"/* "$tmp_profile"
+chmod -R u+w "$tmp_profile"
+
+# copy from persistent profile
+test -e "$persistent_profile/Default/Bookmarks" && \
+ cp "$persistent_profile/Default/Bookmarks" "$tmp_profile/Default/Bookmarks"
+
+LD_LIBRARY_PATH="$HERE/../lib/chrome-support" \
+ "$HERE/../chrome-linux/"/chrome \
+ --auth-server-whitelist="*cern.ch" \
+ --disable-setuid-sandbox --user-data-dir="$tmp_profile" $*
+rm -r "$tmp_profile"