/*
* Copyright (C) 2005-2011 Kay Sievers <kay@vrfy.org>
*
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include <errno.h>
#include <getopt.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "udev-util.h"
#include "udev.h"
static void print_help(void) {
printf("%s control COMMAND\n\n"
"Control the udev daemon.\n\n"
" -h --help Show this help\n"
" --version Show package version\n"
" -e --exit Instruct the daemon to cleanup and exit\n"
" -l --log-priority=LEVEL Set the udev log level for the daemon\n"
" -s --stop-exec-queue Do not execute events, queue only\n"
" -S --start-exec-queue Execute events, flush queue\n"
" -R --reload Reload rules and databases\n"
" -p --property=KEY=VALUE Set a global property for all events\n"
" -m --children-max=N Maximum number of children\n"
" --timeout=SECONDS Maximum time to block for a reply\n"
}
{}
};
if (getuid() != 0) {
return 1;
}
return 2;
switch (c) {
case 'e':
rc = 2;
else
rc = 0;
break;
case 'l': {
int i;
i = util_log_priority(optarg);
if (i < 0) {
return rc;
}
rc = 2;
else
rc = 0;
break;
}
case 's':
rc = 2;
else
rc = 0;
break;
case 'S':
rc = 2;
else
rc = 0;
break;
case 'R':
rc = 2;
else
rc = 0;
break;
case 'p':
return rc;
}
rc = 2;
else
rc = 0;
break;
case 'm': {
char *endp;
int i;
return rc;
}
rc = 2;
else
rc = 0;
break;
}
case 't': {
int seconds;
if (seconds >= 0)
else
break;
}
case 'h':
print_help();
rc = 0;
break;
}
else if (optind == 1)
return rc;
}
.name = "control",
.cmd = adm_control,
.help = "Control the udev daemon",
};