blob: b615ce7838dd1d6fd70f084aae912bb23b104e5d [file] [log] [blame]
Denis Vlasenko740eae02007-10-18 10:46:42 +00001/*
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>
Denis Vlasenkodb12d1d2008-12-07 00:52:58 +00007 *
8 * Licensed under GPLv2, see file LICENSE in this tarball for details.
Denis Vlasenko740eae02007-10-18 10:46:42 +00009 */
10
11#include "libbb.h"
12
13int setsebool_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
14int setsebool_main(int argc, char **argv)
15{
16 char *p;
17 int value;
18
19 if (argc != 3)
20 bb_show_usage();
21
22 p = argv[2];
23
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();
30 }
31
32 if (security_set_boolean(argv[1], value) < 0)
33 bb_error_msg_and_die("can't set boolean");
34
35 return 0;
36}