2008-01-23 22:18:29 +00:00
|
|
|
diff --exclude-from=exclude --exclude=sepolgen-1.0.11 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/Makefile policycoreutils-2.0.37/Makefile
|
2007-12-19 17:55:58 +00:00
|
|
|
--- nsapolicycoreutils/Makefile 2007-12-19 06:02:52.000000000 -0500
|
2008-01-23 22:18:29 +00:00
|
|
|
+++ policycoreutils-2.0.37/Makefile 2008-01-23 17:13:45.000000000 -0500
|
2006-11-14 16:03:27 +00:00
|
|
|
@@ -1,4 +1,4 @@
|
2007-12-19 17:55:58 +00:00
|
|
|
-SUBDIRS = setfiles semanage load_policy newrole run_init secon audit2allow audit2why scripts sestatus semodule_package semodule semodule_link semodule_expand semodule_deps setsebool po
|
|
|
|
+SUBDIRS = setfiles semanage load_policy newrole run_init secon audit2allow audit2why scripts sestatus semodule_package semodule semodule_link semodule_expand semodule_deps setsebool po gui
|
2006-11-14 16:03:27 +00:00
|
|
|
|
2007-12-19 17:55:58 +00:00
|
|
|
INOTIFYH = $(shell ls /usr/include/sys/inotify.h 2>/dev/null)
|
|
|
|
|
2008-01-23 22:18:29 +00:00
|
|
|
diff --exclude-from=exclude --exclude=sepolgen-1.0.11 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/restorecond/restorecond.c policycoreutils-2.0.37/restorecond/restorecond.c
|
2007-07-20 16:09:40 +00:00
|
|
|
--- nsapolicycoreutils/restorecond/restorecond.c 2007-07-16 14:20:41.000000000 -0400
|
2008-01-23 22:18:29 +00:00
|
|
|
+++ policycoreutils-2.0.37/restorecond/restorecond.c 2008-01-23 17:13:45.000000000 -0500
|
2006-11-29 17:48:22 +00:00
|
|
|
@@ -210,9 +210,10 @@
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fsetfilecon(fd, scontext) < 0) {
|
|
|
|
- syslog(LOG_ERR,
|
|
|
|
- "set context %s->%s failed:'%s'\n",
|
|
|
|
- filename, scontext, strerror(errno));
|
|
|
|
+ if (errno != EOPNOTSUPP)
|
|
|
|
+ syslog(LOG_ERR,
|
|
|
|
+ "set context %s->%s failed:'%s'\n",
|
|
|
|
+ filename, scontext, strerror(errno));
|
|
|
|
if (retcontext >= 0)
|
|
|
|
free(prev_context);
|
|
|
|
free(scontext);
|
|
|
|
@@ -225,8 +226,9 @@
|
|
|
|
if (retcontext >= 0)
|
|
|
|
free(prev_context);
|
|
|
|
} else {
|
|
|
|
- syslog(LOG_ERR, "get context on %s failed: '%s'\n",
|
|
|
|
- filename, strerror(errno));
|
|
|
|
+ if (errno != EOPNOTSUPP)
|
|
|
|
+ syslog(LOG_ERR, "get context on %s failed: '%s'\n",
|
|
|
|
+ filename, strerror(errno));
|
|
|
|
}
|
|
|
|
free(scontext);
|
|
|
|
close(fd);
|
2008-01-23 22:18:29 +00:00
|
|
|
diff --exclude-from=exclude --exclude=sepolgen-1.0.11 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/semanage/semanage policycoreutils-2.0.37/semanage/semanage
|
2008-01-23 19:44:15 +00:00
|
|
|
--- nsapolicycoreutils/semanage/semanage 2008-01-23 14:36:28.000000000 -0500
|
2008-01-23 22:18:29 +00:00
|
|
|
+++ policycoreutils-2.0.37/semanage/semanage 2008-01-23 17:13:45.000000000 -0500
|
2008-01-23 19:44:15 +00:00
|
|
|
@@ -111,7 +111,7 @@
|
2007-11-02 20:27:48 +00:00
|
|
|
valid_option["translation"] = []
|
|
|
|
valid_option["translation"] += valid_everyone + [ '-T', '--trans' ]
|
|
|
|
valid_option["boolean"] = []
|
|
|
|
- valid_option["boolean"] += valid_everyone
|
|
|
|
+ valid_option["boolean"] += valid_everyone + [ '--on', "--off", "-1", "-0" ]
|
|
|
|
return valid_option
|
|
|
|
|
|
|
|
#
|
2008-01-23 19:44:15 +00:00
|
|
|
@@ -131,7 +131,7 @@
|
2007-11-02 20:27:48 +00:00
|
|
|
seuser = ""
|
|
|
|
prefix = ""
|
|
|
|
heading=1
|
|
|
|
-
|
|
|
|
+ value=0
|
|
|
|
add = 0
|
|
|
|
modify = 0
|
|
|
|
delete = 0
|
2008-01-23 19:44:15 +00:00
|
|
|
@@ -150,7 +150,7 @@
|
2007-11-02 20:27:48 +00:00
|
|
|
args = sys.argv[2:]
|
|
|
|
|
|
|
|
gopts, cmds = getopt.getopt(args,
|
|
|
|
- 'adf:lhmnp:s:CDR:L:r:t:T:P:S:',
|
|
|
|
+ '01adf:lhmnp:s:CDR:L:r:t:T:P:S:',
|
|
|
|
['add',
|
|
|
|
'delete',
|
|
|
|
'deleteall',
|
2008-01-23 19:44:15 +00:00
|
|
|
@@ -160,6 +160,8 @@
|
2007-11-02 20:27:48 +00:00
|
|
|
'modify',
|
|
|
|
'noheading',
|
|
|
|
'localist',
|
|
|
|
+ 'off',
|
|
|
|
+ 'on',
|
|
|
|
'proto=',
|
|
|
|
'seuser=',
|
|
|
|
'store=',
|
2008-01-23 19:44:15 +00:00
|
|
|
@@ -238,6 +240,11 @@
|
2007-11-02 20:27:48 +00:00
|
|
|
if o == "-T" or o == "--trans":
|
|
|
|
setrans = a
|
|
|
|
|
|
|
|
+ if o == "--on" or o == "-1":
|
|
|
|
+ value = 1
|
|
|
|
+ if o == "-off" or o == "-0":
|
|
|
|
+ value = 0
|
|
|
|
+
|
|
|
|
if object == "login":
|
|
|
|
OBJECT = seobject.loginRecords(store)
|
|
|
|
|