Fix tor pid file permission (#3834)
authorFlorian Fainelli <florian@openwrt.org>
Thu, 18 Sep 2008 08:17:48 +0000 (08:17 +0000)
committerFlorian Fainelli <florian@openwrt.org>
Thu, 18 Sep 2008 08:17:48 +0000 (08:17 +0000)
SVN-Revision: 12621

net/tor/files/tor.init

index 6944e88685c3b59a6bdeadec0edc3383d39aebc5..daa329c3c4fd4e9a4a639285f2b626a621a06948 100644 (file)
@@ -16,6 +16,7 @@ start() {
        [ -d $LIB_D ] || mkdir -p $LOG_D
        [ -d $LIB_D ] || ( mkdir -p $LIB_D && chown $RUN_USER:$RUN_GROUP $LIB_D )
        [ -d $RUN_D ] || mkdir -p $RUN_D
+       [ -f $PID_F ] || ( touch $PID_F && chown $RUN_USER:$RUN_GROUP $PID_F )
        $BIN $OPTIONS
 }