]> granicus.if.org Git - vnstat/commitdiff
fix: some DaemonGroup documentation mentioned user instead of group
authorTeemu Toivola <git@humdi.net>
Fri, 8 Mar 2019 17:29:52 +0000 (19:29 +0200)
committerTeemu Toivola <git@humdi.net>
Fri, 8 Mar 2019 17:29:52 +0000 (19:29 +0200)
cfg/vnstat.conf
man/vnstat.conf.5
src/cfgoutput.c

index 240d47a6c914ebafbc32958ff3d40150111d87e7..82c9ea8d9467269c3669e455f172b06c2a2e1faa 100644 (file)
@@ -71,7 +71,7 @@ ListTop        10
 # 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
index 9d352c18ae53fe30ebc3ce44d4c4b3807643bb76..15d883f6cb0684e2f30f5548d9260ac0284dcead 100644 (file)
@@ -193,16 +193,16 @@ user used to start the process.
 
 .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
index e3da445467bb1ce6a80fc42e95712a19ca494bc8..5a409093577b8ecebbcc7f70c24bde75038ff286 100644 (file)
@@ -80,7 +80,7 @@ void printcfgfile(void)
        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");