]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - scripts/startdaemons.sh
Suppress errors when checking for the existence of files that might be restricted...
[quix0rs-gnu-social.git] / scripts / startdaemons.sh
index a862b9dfe95ba769cd5a3f0b70991ebdd68d6b40..c3729761d06a65f63455b76fc6df1d12e702d58a 100755 (executable)
 # This program tries to start the daemons for Laconica.
 # Note that the 'maildaemon' needs to run as a mail filter.
 
-export INSTALLDIR=$1
+DIR=`dirname $0`
 
 for f in xmppdaemon.php jabberqueuehandler.php publicqueuehandler.php \
-         xmppconfirmhandler.php smsqueuehandler.php ombqueuehandler.php; do
+         xmppconfirmhandler.php smsqueuehandler.php ombqueuehandler.php \
+         twitterqueuehandler.php facebookqueuehandler.php pingqueuehandler.php; do
 
          echo -n "Starting $f...";
-        php $INSTALLDIR/scripts/$f;
+        php $DIR/$f
         echo "DONE."
 done