repo: resdb action: commit revision: path_from: revision_from: 660160694efdc857930957acb05f7b73ce3898d1: path_to: revision_to:
commit 660160694efdc857930957acb05f7b73ce3898d1 Author: d3v11Date: Sun Jan 15 02:49:46 2012 +0000 changed peer2anonet to support "slackware", nick please confirm new code will work. if not i am happy to create fix diff --git a/contrib/peer2anonet/peer2anonet b/contrib/peer2anonet/peer2anonet
--- a/contrib/peer2anonet/peer2anonet
+++ b/contrib/peer2anonet/peer2anonet
@@ -337,8 +337,16 @@ INSTALL_DAEMONTOOLS(){
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
}
-----END OF PAGE-----