# switch to given user when started as root (leave empty to disable)
DaemonUser ""
-# switch to given user when started as root (leave empty to disable)
+# switch to given group when started as root (leave empty to disable)
DaemonGroup ""
# try to detect interface maximum bandwidth, 0 = disable feature
.TP
.B DaemonGroup
-Specify the user to which the daemon process will switch during startup.
-The user can either be the name of the group or a numerical group id.
-Leave empty to disable the group switch. This option can only be used when
+Specify the group to which the daemon process should switch during startup.
+The group can either be the name of the group or a numerical group id.
+Leave empty to disable group switching. This option can only be used when
the process is started as root.
.TP
.B DaemonUser
-Specify the user to which the daemon process will switch during startup.
+Specify the user to which the daemon process should switch during startup.
The user can either be the login of the user or a numerical user id.
-Leave empty to disable the user switch. This option can only be used when
+Leave empty to disable user switching. This option can only be used when
the process is started as root.
.TP
printf("# switch to given user when started as root (leave empty to disable)\n");
printf("DaemonUser \"%s\"\n\n", cfg.daemonuser);
- printf("# switch to given user when started as root (leave empty to disable)\n");
+ printf("# switch to given group when started as root (leave empty to disable)\n");
printf("DaemonGroup \"%s\"\n\n", cfg.daemongroup);
printf("# try to detect interface maximum bandwidth, 0 = disable feature\n");