forked from hbons/SparkleShare
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update authors and add mono-devel dependancy for building
- Loading branch information
Showing
3 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,4 @@ Contributors: | |
Oleg Khlystov <[email protected]> | ||
Simon Pither <[email protected]> | ||
Steven Harms <[email protected]> | ||
Bertrand Lorentz <[email protected]> |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
#!/bin/bash | ||
|
||
pidfile=/tmp/sparkleshare/sparkleshare.pid | ||
|
||
# Create a directory to save the pid to | ||
if [[ "$1" == "start" ]]; then | ||
if [ -e "${pidfile}" ]; then | ||
sparklepid=`cat ${pidfile}` | ||
if [ -n "`ps -p ${sparklepid} | grep ${sparklepid}`" ] | ||
then | ||
echo "SparkleShare is already running" | ||
exit 0 | ||
else | ||
echo "SparkleShare stale pid file found, starting a new instance" | ||
rm -f $pidfile | ||
fi | ||
fi | ||
|
||
echo -n "Starting SparkleShare..." | ||
mkdir -p /tmp/sparkleshare/ | ||
# Start SparkleShare in the background and save the pid | ||
mono "/usr/lib/sparkleshare/SparkleShare.exe" $2 & | ||
PID=$! | ||
echo $PID > /tmp/sparkleshare/sparkleshare.pid | ||
echo " Done." | ||
fi | ||
|
||
if [[ "$1" == "stop" ]]; then | ||
if [ -e "/tmp/sparkleshare/sparkleshare.pid" ]; then | ||
echo -n "Stopping SparkleShare..." | ||
kill `cat /tmp/sparkleshare/sparkleshare.pid` | ||
rm -f /tmp/sparkleshare/sparkleshare.pid | ||
echo " Done." | ||
else | ||
echo "SparkleShare isn't running." | ||
fi | ||
fi | ||
|
||
if [[ "$1" == "restart" ]]; then | ||
if [ -e "/tmp/sparkleshare/sparkleshare.pid" ]; then | ||
echo -n "Stopping SparkleShare..." | ||
kill `cat /tmp/sparkleshare/sparkleshare.pid` | ||
rm -f /tmp/sparkleshare/sparkleshare.pid | ||
echo " Done." | ||
else | ||
echo "SparkleShare isn't running." | ||
fi | ||
|
||
if [ -e "/tmp/sparkleshare/sparkleshare.pid" ]; then | ||
echo "SparkleShare is already running." | ||
else | ||
echo -n "Starting SparkleShare..." | ||
|
||
# Start SparkleShare in the background and save the pid | ||
mono "/usr/lib/sparkleshare/SparkleShare.exe" $2 & | ||
PID=$! | ||
echo $PID > /tmp/sparkleshare/sparkleshare.pid | ||
echo " Done." | ||
fi | ||
fi | ||
|
||
if [[ "$1" == "--help" ]]; then | ||
mono "/usr/lib/sparkleshare/SparkleShare.exe" --help | ||
fi |