Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.

Commit

Permalink
Sierra support
Browse files Browse the repository at this point in the history
  • Loading branch information
axot committed Oct 4, 2016
1 parent f002868 commit 7a4487f
Showing 5 changed files with 20 additions and 4 deletions.
4 changes: 2 additions & 2 deletions iSstp/Info.plist
Original file line number Diff line number Diff line change
@@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.21</string>
<string>1.3</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>20160925</string>
<string>20161004</string>
<key>LSMinimumSystemVersion</key>
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
<key>LSUIElement</key>
16 changes: 16 additions & 0 deletions iSstp/helper
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/bash

[[ $# -le 1 ]] && exit -1

whoami
cmd=$1
if [[ "$cmd" == "start" ]]; then
target="$2"
user="$3"
pass="$4"
server="$5"
opt="$6"
"$target --user $user --password $pass $server $opt"
elif [[ "$cmd" == "stop" ]]; then
killall sstpc helper
fi
4 changes: 2 additions & 2 deletions iSstp/install.sh
Original file line number Diff line number Diff line change
@@ -9,6 +9,6 @@
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
cd $DIR

sudo chmod 4755 helper
sudo chown root helper
sudo touch installed
sudo chmod 4755 helper
sudo touch installed
Binary file modified iSstp/sstp-client/lib/libssl.1.0.0.dylib
Binary file not shown.
Binary file modified iSstp/sstp-client/sbin/sstpc
Binary file not shown.

0 comments on commit 7a4487f

Please sign in to comment.