rpms/setroubleshoot/F-8 .cvsignore, 1.78, 1.79 setroubleshoot.init, 1.14, 1.15 setroubleshoot.spec, 1.93, 1.94 sources, 1.89, 1.90

John Dennis (jdennis) fedora-extras-commits at redhat.com
Fri Feb 8 16:58:21 UTC 2008


Author: jdennis

Update of /cvs/pkgs/rpms/setroubleshoot/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv18314/F-8

Modified Files:
	.cvsignore setroubleshoot.init setroubleshoot.spec sources 
Log Message:
update to latest upstream



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/setroubleshoot/F-8/.cvsignore,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- .cvsignore	11 Jan 2008 18:11:00 -0000	1.78
+++ .cvsignore	8 Feb 2008 16:57:50 -0000	1.79
@@ -1 +1 @@
-setroubleshoot-2.0.2.tar.gz
+setroubleshoot-2.0.5.tar.gz


Index: setroubleshoot.init
===================================================================
RCS file: /cvs/pkgs/rpms/setroubleshoot/F-8/setroubleshoot.init,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- setroubleshoot.init	11 Jan 2008 18:11:00 -0000	1.14
+++ setroubleshoot.init	8 Feb 2008 16:57:50 -0000	1.15
@@ -45,8 +45,6 @@
 # reload and the try-restart actions are optional.
 # the init script.
 
-
-
 PATH=/sbin:/bin:/usr/bin:/usr/sbin
 
 # Source function library.
@@ -55,6 +53,31 @@
 RETVAL=0
 prog="setroubleshootd"
 
+usage(){
+    echo $"Usage: $0 {start|stop|status|restart|try-restart|condrestart|reload|force-reload|cleardb [test][verbose]}"
+}
+
+command=$1
+shift
+
+[ $command ] || (usage; exit 3)
+
+# look for extra options
+while [ $# -gt 0 ]; do
+    arg=$1
+    case "$arg" in
+	test)
+	    EXTRAOPTIONS="$EXTRAOPTIONS -c audit.text_protocol_socket_path=/tmp/audispd_events"
+	    ;;
+	verbose)
+	    EXTRAOPTIONS="$EXTRAOPTIONS -V"
+	    ;;
+	*)
+	    echo "unknown arg $arg"
+    esac
+    shift
+done
+
 rhstatus(){
     status $prog
     RETVAL=$?
@@ -62,7 +85,7 @@
 }
 
 # Allow status as non-root and also if SELinux is disabled
-if [ "$1" = status ]; then
+if [ "$command" = status ]; then
 	rhstatus
 	RETVAL=$?
 	exit $RETVAL
@@ -134,9 +157,8 @@
     return $RETVAL
 }
 
-
 # See how we were called.
-case "$1" in
+case "$command" in
     start)
 	start
 	RETVAL=$?
@@ -166,7 +188,7 @@
 	RETVAL=$?
 	;;
     *)
-	echo $"Usage: $0 {start|stop|status|restart|try-restart|condrestart|reload|force-reload|cleardb}"
+	usage
 	RETVAL=3
 esac
 


Index: setroubleshoot.spec
===================================================================
RCS file: /cvs/pkgs/rpms/setroubleshoot/F-8/setroubleshoot.spec,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- setroubleshoot.spec	11 Jan 2008 18:11:00 -0000	1.93
+++ setroubleshoot.spec	8 Feb 2008 16:57:50 -0000	1.94
@@ -1,10 +1,10 @@
 Summary: Helps troubleshoot SELinux problems
 Name: setroubleshoot
-Version: 2.0.2
+Version: 2.0.5
 Release: 1%{?dist}
 License: GPLv2+
 Group: Applications/System
-URL: https://hosted.fedoraproject.org/projects/setroubleshoot
+URL: https://fedorahosted.org/setroubleshoot
 Source0: %{name}-%{version}.tar.gz
 Source1: setroubleshoot.init
 Source2: setroubleshoot.logrotate
@@ -12,7 +12,7 @@
 BuildArch: noarch
 BuildRequires: perl-XML-Parser
 Requires: %{name}-server = %{version}-%{release} 
-Requires: %{name}-plugins >= 2.0.0
+Requires: %{name}-plugins >= 2.0.4
 Requires: pygtk2 >= 2.9.2
 Requires: gnome-python2, gnome-python2-canvas 
 BuildRequires: desktop-file-utils
@@ -102,7 +102,7 @@
 Summary: SELinux troubleshoot server
 Group: Applications/System
 
-Requires: %{name}-plugins >= 2.0.0
+Requires: %{name}-plugins >= 2.0.4
 Requires: audit >= 1.2.6-3
 Requires: audit-libs-python >= 1.2.6-3
 Requires: libselinux >= 1.30.15-1
@@ -111,7 +111,6 @@
 Requires: libxml2-python
 Requires: libselinux-python
 Requires: audit-libs-python
-Requires: libuser-python
 
 BuildRequires: intltool gettext python
 
@@ -182,6 +181,32 @@
 %attr(0755,root,root) /etc/rc.d/init.d/%{name}
 
 %changelog
+* Wed Feb  6 2008 John Dennis <jdennis at redhat.com> - 2.0.5-1
+	- allow sealert -l lookup to accept * wildcard
+	- add a few more audit fields needing special decode handling
+
+* Thu Jan 31 2008  <jdennis at redhat.com> - 2.0.4-1
+	- Resolve bug #430421: audit_listener_database.xml:3029: parser error in xmlParseDoc()
+	  rewrite the audit_msg_decode logic to beaware of specific audit fields
+	- add new template substitution $SOURCE, a friendly name, $SOURCE_PATH still exists
+	  and is the full path name of $SOURCE, also add 'source' attribute in AVC class,
+	  fix how source and source_path are computed from audit's comm and exe fields
+	- fix the computation of tpath to also look at the audit name field, formerly
+	  it had only been looking at path, fixes <Unknown> showing up for many targets
+	- add exception handling around xml file writes (Alan Cox reports problem when /var is full)
+	- add testing documentation
+	- Resolve bug #430845: obsolete URL in setroubleshoot package description
+	- Resolve bug #428960: Permissive message makes no sense.
+	- init script now allows extra test options
+	- show_browser() now opens and raises the window (e.g. presents) rather than just
+	  assuring it's realized (e.g. iconified, or hidden)
+	- sealert -l message in syslog converts from html before writing to syslog
+	- Resolve bug #320881: export setroubleshoot_selinux_symposium in PDF format
+	- add code to verify all async rpc's have been cleared from the async rpc cache
+	- add code to set a default rpc method return if the interface does not define a callback
+	  (methods which did not have a callback were not returning anything and hence were not
+	   getting cleared from the cache)
+
 * Fri Jan 11 2008  <jdennis at redhat.com> - 2.0.2-1
 	- Resolve bug #428252: Problem with update/remove old version
 	- Add code to validate xml database version, if file is incompatible it is not read,


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/setroubleshoot/F-8/sources,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- sources	11 Jan 2008 18:11:00 -0000	1.89
+++ sources	8 Feb 2008 16:57:50 -0000	1.90
@@ -1 +1 @@
-9ca6ef75d47fe8fbecfe7698a86430c7  setroubleshoot-2.0.2.tar.gz
+b7297afdf2221158a25711320039037d  setroubleshoot-2.0.5.tar.gz




More information about the fedora-extras-commits mailing list