auto-import setroubleshoot-0.15-1 on branch devel from

setroubleshoot-0.15-1.src.rpm
This commit is contained in:
Daniel J Walsh 2006-07-27 14:28:34 +00:00
parent dc845c8a49
commit 6be5ad0739
4 changed files with 17 additions and 10 deletions

View File

@ -1 +1 @@
setroubleshoot-0.14.tar.gz
setroubleshoot-0.15.tar.gz

View File

@ -28,36 +28,37 @@ PATH=/sbin:/bin:/usr/bin:/usr/sbin
test `id -u` = 0 || exit 4
# Check config
test -x /usr/sbin/setroubleshootd || exit 5
test -x /usr/sbin/setroubleshoot || exit 5
RETVAL=0
prog="setroubleshootd"
prog="setroubleshoot"
exe="setroubleshootd"
start(){
echo -n $"Starting $prog: "
unset HOME MAIL USER USERNAME
daemon $prog "$EXTRAOPTIONS"
daemon $exe "$EXTRAOPTIONS"
RETVAL=$?
echo
if test $RETVAL = 0 ; then
touch /var/lock/subsys/setroubleshootd
touch /var/lock/subsys/setroubleshoot
fi
return $RETVAL
}
stop(){
echo -n $"Stopping $prog: "
killproc $prog
killproc $exe
RETVAL=$?
echo
rm -f /var/lock/subsys/setroubleshootd
rm -f /var/lock/subsys/setroubleshoot
return $RETVAL
}
reload(){
echo -n $"Reloading configuration: "
killproc $prog -HUP
killproc $exe -HUP
RETVAL=$?
echo
return $RETVAL

View File

@ -1,6 +1,6 @@
Summary: Helps troubleshoot SELinux problems
Name: setroubleshoot
Version: 0.14
Version: 0.15
Release: 1
License: GPL
Group: Applications/System
@ -78,6 +78,7 @@ rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc %{pkgdocdir}
%{_bindir}/*
%{_sbindir}/*
%{auditlibdir}/*
%{pkgpythondir}
@ -93,6 +94,11 @@ rm -rf %{buildroot}
%{_datadir}/pixmaps/*png
%changelog
* Mon Jul 26 2006 Dan Walsh <dwalsh@redhat.com> - 0.15-1
- Karl MacMillan
* Add generic templating mechanism to Plugin
* Ported all plugins to use templating mechanism
* Sat Jul 22 2006 Dan Walsh <dwalsh@redhat.com> - 0.13-1
- Fixes to plugins
- Fixes to dispatcher

View File

@ -1 +1 @@
22558c35056acc87ca6b04da8cd9c722 setroubleshoot-0.14.tar.gz
f07dea1b1d86430559b60ffaa327e466 setroubleshoot-0.15.tar.gz