Tomato 1.28
[tomato.git] / release / src / router / busybox / selinux / setsebool.c
blobb615ce7838dd1d6fd70f084aae912bb23b104e5d
1 /*
2 * setsebool
3 * Simple setsebool
4 * NOTE: -P option requires libsemanage, so this feature is
5 * omitted in this version
6 * Yuichi Nakamura <ynakam@hitachisoft.jp>
8 * Licensed under GPLv2, see file LICENSE in this tarball for details.
9 */
11 #include "libbb.h"
13 int setsebool_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
14 int setsebool_main(int argc, char **argv)
16 char *p;
17 int value;
19 if (argc != 3)
20 bb_show_usage();
22 p = argv[2];
24 if (LONE_CHAR(p, '1') || strcasecmp(p, "true") == 0 || strcasecmp(p, "on") == 0) {
25 value = 1;
26 } else if (LONE_CHAR(p, '0') || strcasecmp(p, "false") == 0 || strcasecmp(p, "off") == 0) {
27 value = 0;
28 } else {
29 bb_show_usage();
32 if (security_set_boolean(argv[1], value) < 0)
33 bb_error_msg_and_die("can't set boolean");
35 return 0;