svn commit: trunk/busybox/selinux
vda at busybox.net
vda at busybox.net
Thu Oct 18 03:46:44 PDT 2007
Author: vda
Date: 2007-10-18 03:46:42 -0700 (Thu, 18 Oct 2007)
New Revision: 20281
Log:
snv add setsebool
Added:
trunk/busybox/selinux/setsebool.c
Changeset:
Added: trunk/busybox/selinux/setsebool.c
===================================================================
--- trunk/busybox/selinux/setsebool.c (rev 0)
+++ trunk/busybox/selinux/setsebool.c 2007-10-18 10:46:42 UTC (rev 20281)
@@ -0,0 +1,34 @@
+/*
+ * setsebool
+ * Simple setsebool
+ * NOTE: -P option requires libsemanage, so this feature is
+ * omitted in this version
+ * Yuichi Nakamura <ynakam at hitachisoft.jp>
+ */
+
+#include "libbb.h"
+
+int setsebool_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
+int setsebool_main(int argc, char **argv)
+{
+ char *p;
+ int value;
+
+ if (argc != 3)
+ bb_show_usage();
+
+ p = argv[2];
+
+ if (LONE_CHAR(p, '1') || strcasecmp(p, "true") == 0 || strcasecmp(p, "on") == 0) {
+ value = 1;
+ } else if (LONE_CHAR(p, '0') || strcasecmp(p, "false") == 0 || strcasecmp(p, "off") == 0) {
+ value = 0;
+ } else {
+ bb_show_usage();
+ }
+
+ if (security_set_boolean(argv[1], value) < 0)
+ bb_error_msg_and_die("can't set boolean");
+
+ return 0;
+}
More information about the busybox-cvs
mailing list