# HG changeset patch # User d3v11 # Date 1326595786 0 # Node ID b9f1ea99d2cc82ce5872a7beb8f084b6f209f941 # Parent 1fecd121452d34d5c12352c0fbcaf35635f4fac4 changed peer2anonet to support "slackware", nick please confirm new code will work. if not i am happy to create fix diff -r 1fecd121452d -r b9f1ea99d2cc contrib/peer2anonet/peer2anonet --- a/contrib/peer2anonet/peer2anonet Fri Jan 13 23:19:29 2012 +0000 +++ b/contrib/peer2anonet/peer2anonet Sun Jan 15 02:49:46 2012 +0000 @@ -337,8 +337,16 @@ cd admin/daemontools-0.76 sed -i 's/gcc/gcc -include errno.h/g' src/conf-cc package/install - cp /etc/rc.local /etc/peer2anonet/rc.local.backup - sed -i "s/exit 0/csh -cf \'\/command\/svscanboot \&\'/" /etc/rc.local + if [ -e /etc/rc.d/rc.local ]; then + sed -i "s/exit 0/csh -cf \'\/command\/svscanboot \&\'/" /etc/rc.d/rc.local + chmod +x /etc/rc.d/rc.local + elif [ -e /etc/rc.local ]; then + sed -i "s/exit 0/csh -cf \'\/command\/svscanboot \&\'/" /etc/rc.local + chmod +x /etc/rc.local + else + echo ' fatal error: cannot find rc startup script' + exit 1 + fi chmod +x /etc/rc.local }