setsebool: new applet (Yuichi Nakamura <ynakam@hitachisoft.jp>)
This commit is contained in:
parent
4a4575686e
commit
be039374f3
@ -304,6 +304,7 @@ USE_SETENFORCE(APPLET(setenforce, _BB_DIR_USR_SBIN, _BB_SUID_NEVER))
|
|||||||
USE_SETFILES(APPLET(setfiles, _BB_DIR_SBIN, _BB_SUID_NEVER))
|
USE_SETFILES(APPLET(setfiles, _BB_DIR_SBIN, _BB_SUID_NEVER))
|
||||||
USE_SETKEYCODES(APPLET(setkeycodes, _BB_DIR_USR_BIN, _BB_SUID_NEVER))
|
USE_SETKEYCODES(APPLET(setkeycodes, _BB_DIR_USR_BIN, _BB_SUID_NEVER))
|
||||||
USE_SETLOGCONS(APPLET(setlogcons, _BB_DIR_USR_SBIN, _BB_SUID_NEVER))
|
USE_SETLOGCONS(APPLET(setlogcons, _BB_DIR_USR_SBIN, _BB_SUID_NEVER))
|
||||||
|
USE_SETSEBOOL(APPLET(setsebool, _BB_DIR_USR_SBIN, _BB_SUID_NEVER))
|
||||||
USE_SETSID(APPLET(setsid, _BB_DIR_USR_BIN, _BB_SUID_NEVER))
|
USE_SETSID(APPLET(setsid, _BB_DIR_USR_BIN, _BB_SUID_NEVER))
|
||||||
USE_SETUIDGID(APPLET_ODDNAME(setuidgid, chpst, _BB_DIR_USR_BIN, _BB_SUID_NEVER, setuidgid))
|
USE_SETUIDGID(APPLET_ODDNAME(setuidgid, chpst, _BB_DIR_USR_BIN, _BB_SUID_NEVER, setuidgid))
|
||||||
USE_FEATURE_SH_IS_ASH(APPLET_NOUSAGE(sh, ash, _BB_DIR_BIN, _BB_SUID_NEVER))
|
USE_FEATURE_SH_IS_ASH(APPLET_NOUSAGE(sh, ash, _BB_DIR_BIN, _BB_SUID_NEVER))
|
||||||
|
@ -3056,6 +3056,12 @@ USE_FEATURE_RUN_PARTS_FANCY("\n -l Prints names of all matching files even when
|
|||||||
#define setlogcons_full_usage \
|
#define setlogcons_full_usage \
|
||||||
"Redirect the kernel output to console N (0 for current)"
|
"Redirect the kernel output to console N (0 for current)"
|
||||||
|
|
||||||
|
#define setsebool_trivial_usage \
|
||||||
|
"boolean value"
|
||||||
|
|
||||||
|
#define setsebool_full_usage \
|
||||||
|
"Change boolean setting"
|
||||||
|
|
||||||
#define setsid_trivial_usage \
|
#define setsid_trivial_usage \
|
||||||
"program [arg ...]"
|
"program [arg ...]"
|
||||||
#define setsid_full_usage \
|
#define setsid_full_usage \
|
||||||
|
@ -104,5 +104,13 @@ config FEATURE_SETFILES_CHECK_OPTION
|
|||||||
Support "-c" option (check the validity of the contexts against
|
Support "-c" option (check the validity of the contexts against
|
||||||
the specified binary policy) for setfiles. Requires libsepol.
|
the specified binary policy) for setfiles. Requires libsepol.
|
||||||
|
|
||||||
|
config SETSEBOOL
|
||||||
|
bool "setsebool"
|
||||||
|
default n
|
||||||
|
depends on SELINUX
|
||||||
|
help
|
||||||
|
Enable support for change boolean.
|
||||||
|
semanage and -P option is not supported yet.
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
|
@ -16,3 +16,4 @@ lib-$(CONFIG_SELINUXENABLED) += selinuxenabled.o
|
|||||||
lib-$(CONFIG_SETENFORCE) += setenforce.o
|
lib-$(CONFIG_SETENFORCE) += setenforce.o
|
||||||
lib-$(CONFIG_SETFILES) += setfiles.o
|
lib-$(CONFIG_SETFILES) += setfiles.o
|
||||||
lib-$(CONFIG_RESTORECON) += setfiles.o
|
lib-$(CONFIG_RESTORECON) += setfiles.o
|
||||||
|
lib-$(CONFIG_SETSEBOOL) += setsebool.o
|
||||||
|
Loading…
Reference in New Issue
Block a user