Yes, you can. Assuming you already have daemontools installed, configured and running in your system (see http://cr.yp.to/daemontools.html), you will have to make two decisions:
1. The log account and group name (_log.log_ is used in this example). Logging programs run under this _account.group_. If this _account.group pair_ does not exist yet, create it now.
-
-//2. The radiusd local service directory (_/etc/radiusd_ is used in this example). This is where radiusd will store logs and a few configuration files.
+2. The radiusd local service directory (_/etc/radiusd_ is used in this example). This is where radiusd will store logs and a few configuration files.
Then perform these steps:
+++ /dev/null
-```
-***************
-*** 83,94 ****
-```
-
-uid:: Name of user who is allowed to connect to the control socket.
-
-```
-- # uid = radius
-
-```
-
-gid:: Name of group that is allowed to connect to the control socket.
-
-```
-- # gid = radius
-
-```
-
-Access mode.
-```
---- 83,94 ----
-```
-
-uid:: Name of user who is allowed to connect to the control socket.
-
-```
-+ # uid = freerad
-
-```
-
-gid:: Name of group that is allowed to connect to the control socket.
-
-```
-+ # gid = freerad
-
-```
-
-Access mode.
-
-== Default Configuration
-
-```
-```
+++ /dev/null
-```
-***************
-*** 86,91 ****
- udp {
- ipaddr = *
- port = 1812
- }
- }
-
---- 86,92 ----
- udp {
- ipaddr = *
- port = 1812
-+ cleanup_delay = 30
- }
- }
-
-***************
-*** 227,232 ****
- expiration
- logintime
-
-```
-
-If no other module has claimed responsibility for
-authentication, then try to use PAP. This allows the
-```
---- 228,237 ----
- expiration
- logintime
-
-+ update control {
-+ Cleartext-Password := "bob"
-+ }
-+
-```
-
-If no other module has claimed responsibility for
-authentication, then try to use PAP. This allows the
-```
-***************
-*** 277,283 ****
-```
-in the 'authorize' section supplies a password. The
-password can be clear-text, or encrypted.
-```
- authenticate pap {
-- pap
- }
-
-```
-
-```
---- 282,308 ----
-```
-in the 'authorize' section supplies a password. The
-password can be clear-text, or encrypted.
-```
- authenticate pap {
-+ if (!Proxy-State) {
-+ fork Access-Request {
-+ radius {
-+ fail = 1
-+ }
-+ if (fail) {
-+ update reply {
-+ Packet-Type := Access-Accept
-+ }
-+ ok
-+ }
-+ }
-+
-+ if (!fail) {
-+ accept
-+ }
-+ }
-+ else {
-+ pap
-+ # do_not_respond
-+ }
- }
-
-```
-
-
-== Default Configuration
-
-```
-
-```