Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(84)

Side by Side Diff: remoting/host/installer/mac/PrivilegedHelperTools/org.chromium.chromoting.me2me.sh

Issue 9958083: Initial version of the Chromoting installer for Mac. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+LF
\ No newline at end of property
OLDNEW
(Empty)
1 #!/bin/sh
2
3 CONFIG_DIR=/Library/PrivilegedHelperTools
4 HOST_EXE=$CONFIG_DIR/org.chromium.chromoting.me2me_host
Lambros 2012/04/03 00:49:17 Maybe add NAME=org.chromium.chromoting and use it
garykac 2012/04/09 19:04:16 Done.
5 ENABLED_FILE=$CONFIG_DIR/org.chromium.chromoting.me2me_enabled
6
7 if [ "$1" = "--disable" ]; then
8 echo $$
Lambros 2012/04/03 00:49:17 Please could you add a comment before the first "e
garykac 2012/04/09 19:04:16 Done.
9 rm -f "$ENABLED_FILE"
10 elif [ "$1" = "--enable" ]; then
11 echo $$
12 touch "$ENABLED_FILE"
13 else
14 exec "$HOST_EXE" \
15 --auth-config="$CONFIG_DIR/org.chromium.chromoting.json" \
16 --host-config="$CONFIG_DIR/org.chromium.chromoting.json"
17 fi
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698