| * NOTE: -P option requires libsemanage, so this feature is |
| * omitted in this version |
| * Yuichi Nakamura <ynakam@hitachisoft.jp> |
| * Licensed under GPLv2, see file LICENSE in this tarball for details. |
| int setsebool_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| int setsebool_main(int argc, char **argv) |
| if (LONE_CHAR(p, '1') || strcasecmp(p, "true") == 0 || strcasecmp(p, "on") == 0) { |
| } else if (LONE_CHAR(p, '0') || strcasecmp(p, "false") == 0 || strcasecmp(p, "off") == 0) { |
| if (security_set_boolean(argv[1], value) < 0) |
| bb_error_msg_and_die("can't set boolean"); |