]> err.no Git - dpkg/commitdiff
Changed start-stop-daemon's --chuid user/group seperator to ':'
authorBen Collins <bcollins@debian.org>
Fri, 19 Nov 1999 00:42:05 +0000 (00:42 +0000)
committerBen Collins <bcollins@debian.org>
Fri, 19 Nov 1999 00:42:05 +0000 (00:42 +0000)
utils/start-stop-daemon.8
utils/start-stop-daemon.c

index b6468280f31d3d4e62bd6ddcfa218bbc55c74651..71bed3ec5a69443d50f778c620ab76f1c8905f78 100644 (file)
@@ -123,8 +123,8 @@ Do not print informational messages; only display error messages.
 .TP
 .I -c|--chuid
 Change to this username/uid before starting the process. You can also
-specify a group by appending a '.', then the group or gid in the same way
-as you would for the `chown' command (user.group). When using this option
+specify a group by appending a ':', then the group or gid in the same way
+as you would for the `chown' command (user:group). When using this option
 you must realize that the primary and suplimental groups are set as well,
 even if the `group' options is not specified. The group option is only for
 groups that the user isn't normally a member of (like adding per/process
index faf0ed5ae208ffb3134ceb33608183c08813f43f..fbbd0dd2da1892ae2f91386b9d9c109df34a6c15 100644 (file)
@@ -172,7 +172,7 @@ Usage:
 Options (at least one of --exec|--pidfile|--user is required):
   -x|--exec <executable>        program to start/check if it is running\n\
   -p|--pidfile <pid-file>       pid file to check\n\
-  -c|--chuid <name|uid[.group|gid]>
+  -c|--chuid <name|uid[:group|gid]>
                change to this user/group before starting process\n\
   -u|--user <username>|<uid>    stop processes owned by this user\n\
   -n|--name <process-name>      stop processes with this name\n\
@@ -312,7 +312,7 @@ parse_options(int argc, char * const *argv)
                        break;
                case 'c':  /* --chuid <username>|<uid> */
                        changeuser = strdup(optarg); /* because we need to modify */
-                       changegroup = strchr(changeuser, '.');
+                       changegroup = strchr(changeuser, ':');
                        if (changegroup != NULL) {
                                changegroup[0] = '\0';
                                changegroup++;