View Single Post
  #5   (View Single Post)  
Old 12th May 2008
J65nko J65nko is offline
Administrator
 
Join Date: May 2008
Location: Budel - the Netherlands
Posts: 4,125
Default

You should remove these lines from /etc/rc.conf.local. This file should only contain variable assignments and not any executable shell commands.
Code:
# ddclient
  if [ -x /usr/local/sbin/ddclient ]; then
     echo -n ' ddclient'; /usr/local/sbin/ddclient
  fi
The proper place for this is the file /etc/rc.local.

The apachectl files reads/sources the /etc/rc.conf file. Because rc.conf reads in rc.conf.local, your commands to load ddclient are executed. So you have to take these commands out and put them in the proper file /etc/rc.local

Does the Apache logs complain that it cannot find your css file?
__________________
You don't need to be a genius to debug a pf.conf firewall ruleset, you just need the guts to run tcpdump
Reply With Quote