Solved TOR connecting but throws warning rc.conf not enabled

Hello friends

Here is my rc.conf file
Code:
$ cat /etc/rc.conf
privoxy_enable ="YES"
tor_enable ="YES"
slim_enable="YES"
moused_enable="YES"
dbus_enable="YES"
hald_enable="YES"
xdm_enable="YES"

hostname="noname.noname.edu"

keymap="us.iso.kbd"

ifconfig_re0=" inet xx.xx.xx.xx netmask xx.xx.xx.xx"
defaultrouter="xx.xx.xx.xx"

sshd_enable="YES"

# Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
dumpdev="NO"

fusefs_enable="YES"

linux_enable="YES"

The TOR and Privoxy service are up and running and I am able to browse the onion network, but the service status is reporting this:

Code:
# service -e
/etc/rc.conf: privoxy_enable: not found
/etc/rc.conf: tor_enable: not found

Any suggestions please.
 
Remove the spaces before the '='.

This is good:
Code:
myservice_enable="YES"
This is not:
Code:
myservice_enable ="YES"
 
Just a small point. :) The name is Tor and not TOR. I know it was once referred to as an abbreviation, but that is in the past and the developers prefer for it to simply be referred to by the name (not abbreviation) Tor.
 
Back
Top