Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.60 KB | None | 0 0
  1. # /etc/init.d/shorewall-init (4.6.5-2)
  2. #
  3. # If STATEDIR/firewall exists,
  4. # then execute $STATEDIR/$PRODUCT/firewall
  5. #
  6. # /etc/init.d/shorewall-init: line 106: /var/lib//shorewall/shorewall/firewall: No such file or directory
  7. #
  8. # After removing /$PRODUCT on line 83 it compiled, but I still
  9. # experiencing some strange behaviour, but I think that is related to a second bug.
  10. #
  11.  
  12.      if [ -x $STATEDIR/firewall ]; then
  13.           if ! ${SBIN}/$PRODUCT status > /dev/null 2>&1; then
  14.               $STATEDIR/$PRODUCT/firewall ${OPTIONS} stop || exit
  15.           fi
  16.       else
  17.           exit 6
  18.       fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement