diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2014-01-09 11:00:36 -0800 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2014-01-09 11:00:36 -0800 |
commit | 5c90afa296b5e9939dc4571c418321d3235a547f (patch) | |
tree | b7d61d7cdd8edaca482f91f3b1b2fd5835fd15f1 /ext | |
parent | 68ddba60a3668d817ef0419cddd1e7c35388ecfb (diff) | |
download | infinitytier-5c90afa296b5e9939dc4571c418321d3235a547f.tar.gz infinitytier-5c90afa296b5e9939dc4571c418321d3235a547f.zip |
Work on mac launch script, sign binary mac tap driver kext (and there was much rejoicing!)
Diffstat (limited to 'ext')
-rw-r--r-- | ext/bin/tap-mac/tap.kext/Contents/_CodeSignature/CodeDirectory | bin | 0 -> 145 bytes | |||
-rw-r--r-- | ext/bin/tap-mac/tap.kext/Contents/_CodeSignature/CodeRequirements | bin | 0 -> 176 bytes | |||
-rw-r--r-- | ext/bin/tap-mac/tap.kext/Contents/_CodeSignature/CodeResources | 105 | ||||
-rw-r--r-- | ext/bin/tap-mac/tap.kext/Contents/_CodeSignature/CodeSignature | bin | 0 -> 8578 bytes | |||
-rwxr-xr-x | ext/installfiles/mac/launch.sh | 2 |
5 files changed, 106 insertions, 1 deletions
diff --git a/ext/bin/tap-mac/tap.kext/Contents/_CodeSignature/CodeDirectory b/ext/bin/tap-mac/tap.kext/Contents/_CodeSignature/CodeDirectory Binary files differnew file mode 100644 index 00000000..94acbe29 --- /dev/null +++ b/ext/bin/tap-mac/tap.kext/Contents/_CodeSignature/CodeDirectory diff --git a/ext/bin/tap-mac/tap.kext/Contents/_CodeSignature/CodeRequirements b/ext/bin/tap-mac/tap.kext/Contents/_CodeSignature/CodeRequirements Binary files differnew file mode 100644 index 00000000..1df93129 --- /dev/null +++ b/ext/bin/tap-mac/tap.kext/Contents/_CodeSignature/CodeRequirements diff --git a/ext/bin/tap-mac/tap.kext/Contents/_CodeSignature/CodeResources b/ext/bin/tap-mac/tap.kext/Contents/_CodeSignature/CodeResources new file mode 100644 index 00000000..0710b400 --- /dev/null +++ b/ext/bin/tap-mac/tap.kext/Contents/_CodeSignature/CodeResources @@ -0,0 +1,105 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>files</key> + <dict/> + <key>files2</key> + <dict/> + <key>rules</key> + <dict> + <key>^Resources/</key> + <true/> + <key>^Resources/.*\.lproj/</key> + <dict> + <key>optional</key> + <true/> + <key>weight</key> + <real>1000</real> + </dict> + <key>^Resources/.*\.lproj/locversion.plist$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>1100</real> + </dict> + <key>^version.plist$</key> + <true/> + </dict> + <key>rules2</key> + <dict> + <key>.*\.dSYM($|/)</key> + <dict> + <key>weight</key> + <real>11</real> + </dict> + <key>^(.*/)?\.DS_Store$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>2000</real> + </dict> + <key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key> + <dict> + <key>nested</key> + <true/> + <key>weight</key> + <real>10</real> + </dict> + <key>^.*</key> + <true/> + <key>^Info\.plist$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>20</real> + </dict> + <key>^PkgInfo$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>20</real> + </dict> + <key>^Resources/</key> + <dict> + <key>weight</key> + <real>20</real> + </dict> + <key>^Resources/.*\.lproj/</key> + <dict> + <key>optional</key> + <true/> + <key>weight</key> + <real>1000</real> + </dict> + <key>^Resources/.*\.lproj/locversion.plist$</key> + <dict> + <key>omit</key> + <true/> + <key>weight</key> + <real>1100</real> + </dict> + <key>^[^/]+$</key> + <dict> + <key>nested</key> + <true/> + <key>weight</key> + <real>10</real> + </dict> + <key>^embedded\.provisionprofile$</key> + <dict> + <key>weight</key> + <real>20</real> + </dict> + <key>^version\.plist$</key> + <dict> + <key>weight</key> + <real>20</real> + </dict> + </dict> +</dict> +</plist> diff --git a/ext/bin/tap-mac/tap.kext/Contents/_CodeSignature/CodeSignature b/ext/bin/tap-mac/tap.kext/Contents/_CodeSignature/CodeSignature Binary files differnew file mode 100644 index 00000000..5fde8dc5 --- /dev/null +++ b/ext/bin/tap-mac/tap.kext/Contents/_CodeSignature/CodeSignature diff --git a/ext/installfiles/mac/launch.sh b/ext/installfiles/mac/launch.sh index 9a48568d..1ce21efd 100755 --- a/ext/installfiles/mac/launch.sh +++ b/ext/installfiles/mac/launch.sh @@ -11,7 +11,7 @@ if [ -z "$ztapp" -o ! -d "$ztapp" ]; then if [ ! -d "$ztapp" ]; then if [ -e "$zthome/uninstall.sh" ]; then cd "$zthome" - nohup "$zthome/uninstall.sh" >>/tmp/ZeroTierOneUninstall.log 2>&1 & + nohup "$zthome/uninstall.sh" >/tmp/ZeroTierOneUninstall.log 2>&1 & disown %1 exit 0 fi |