public
Description: A "StartupItems" folder (script and plist) which makes Hamachi start up when your OS X machine boots.
Clone URL: git://github.com/trak3r/hamachi-for-os-x-start-up-on-boot.git
trying to get hamachi to run AFTER the tun is configured
System Administrator (author)
Mon May 12 13:59:19 -0700 2008
commit  943f4148d2537ace2865e55591441805014810dd
tree    a9ca1d87287c03a06e2917be2b62712912dd90df
parent  e946975d4e0cebfbd7fbcd8533ffb4770944fe0e
...
9
10
11
12
 
 
13
14
15
16
17
18
 
19
20
21
...
9
10
11
 
12
13
14
15
16
17
18
 
19
20
21
22
0
@@ -9,13 +9,14 @@
0
 StartService ()
0
 {
0
     ConsoleMessage "Starting Hamachi"
0
- /usr/bin/hamachi start
0
+ /usr/sbin/tuncfg
0
+ /usr/bin/hamachi start
0
 }
0
 
0
 StopService ()
0
 {
0
     ConsoleMessage "Stopping Hamachi"
0
- /usr/bin/hamachi stop
0
+ /usr/bin/hamachi stop
0
 }
0
 
0
 RestartService ()
...
2
3
4
5
 
 
6
7
8
...
2
3
4
 
5
6
7
8
9
0
@@ -2,7 +2,8 @@
0
     Description = "Hamachi";
0
     Provides = ("Hamachi");
0
     Requires = ("Network");
0
- OrderPreference = "Late";
0
+ Uses = ("tun");
0
+ OrderPreference = "Last";
0
     Messages = {
0
         start = "Starting Hamachi";
0
         stop = "Stopping Hamachi";

Comments

    No one has commented yet.