This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=TCP/IP packet repeater in the application layer | |
| ConditionPathExists=/etc/stone/stone.conf | |
| [Service] | |
| PIDFile=/var/run/stone.pid | |
| ExecStart=/usr/local/sbin/stone -C /etc/stone/stone.conf | |
| Restart=on-abort | |
| [Install] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| TARGET_PLATFORM=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk | |
| TARGET_BIN="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin" | |
| TARGET_LD=$TARGET_BIN/ld | |
| TARGET_LDFLAGS="-L$TARGET_PLATFORM/usr/lib/" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| TARGET_PLATFORM=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk | |
| TARGET_BIN="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin" | |
| TARGET_GCC=$TARGET_BIN/arm-apple-darwin10-llvm-gcc-4.2 | |
| TARGET_CFLAGS="-isysroot $TARGET_PLATFORM -march=armv7 -mcpu=cortex-a8 -mfpu=neon" | |
| exec $TARGET_GCC $TARGET_CFLAGS "$@" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| . /lib/lsb/init-functions | |
| NAME=stone | |
| DAEMON=/usr/local/sbin/${NAME} | |
| CONFIG=/etc/stone/stone.conf | |
| PIDFILE=/var/run/${NAME}.pid | |
| start() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: btsync | |
| # Required-Start: $local_fs $remote_fs | |
| # Required-Stop: $local_fs $remote_fs | |
| # Should-Start: $network | |
| # Should-Stop: $network | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Multi-user daemonized version of btsync. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # | |
| # PROVIDE: btsync | |
| # REQUIRE: LOGIN DAEMON NETWORKING | |
| # KEYWORD: shutdown | |
| # | |
| # To enable BTSync, add this line to your /etc/rc.conf: | |
| # | |
| # btsync_enable="YES" | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/sh | |
| USER=mitz | |
| PATH=/sbin:/usr/sbin:/bin:/usr/bin | |
| DESC="Aerofs CLI Client" | |
| NAME=aerofs | |
| START_DAEMON="/usr/bin/aerofs-cli" | |
| STOP_DAEMON="/usr/bin/aerofs-sh shutdown" | |
| PIDFILE=/var/run/$NAME.pid | |
| SCRIPTNAME=/etc/init.d/$NAME |
NewerOlder