auto-import setroubleshoot-0.15-1 on branch devel from
setroubleshoot-0.15-1.src.rpm
This commit is contained in:
parent
dc845c8a49
commit
6be5ad0739
@ -1 +1 @@
|
|||||||
setroubleshoot-0.14.tar.gz
|
setroubleshoot-0.15.tar.gz
|
||||||
|
@ -28,36 +28,37 @@ PATH=/sbin:/bin:/usr/bin:/usr/sbin
|
|||||||
test `id -u` = 0 || exit 4
|
test `id -u` = 0 || exit 4
|
||||||
|
|
||||||
# Check config
|
# Check config
|
||||||
test -x /usr/sbin/setroubleshootd || exit 5
|
test -x /usr/sbin/setroubleshoot || exit 5
|
||||||
|
|
||||||
RETVAL=0
|
RETVAL=0
|
||||||
|
|
||||||
prog="setroubleshootd"
|
prog="setroubleshoot"
|
||||||
|
exe="setroubleshootd"
|
||||||
|
|
||||||
start(){
|
start(){
|
||||||
echo -n $"Starting $prog: "
|
echo -n $"Starting $prog: "
|
||||||
unset HOME MAIL USER USERNAME
|
unset HOME MAIL USER USERNAME
|
||||||
daemon $prog "$EXTRAOPTIONS"
|
daemon $exe "$EXTRAOPTIONS"
|
||||||
RETVAL=$?
|
RETVAL=$?
|
||||||
echo
|
echo
|
||||||
if test $RETVAL = 0 ; then
|
if test $RETVAL = 0 ; then
|
||||||
touch /var/lock/subsys/setroubleshootd
|
touch /var/lock/subsys/setroubleshoot
|
||||||
fi
|
fi
|
||||||
return $RETVAL
|
return $RETVAL
|
||||||
}
|
}
|
||||||
|
|
||||||
stop(){
|
stop(){
|
||||||
echo -n $"Stopping $prog: "
|
echo -n $"Stopping $prog: "
|
||||||
killproc $prog
|
killproc $exe
|
||||||
RETVAL=$?
|
RETVAL=$?
|
||||||
echo
|
echo
|
||||||
rm -f /var/lock/subsys/setroubleshootd
|
rm -f /var/lock/subsys/setroubleshoot
|
||||||
return $RETVAL
|
return $RETVAL
|
||||||
}
|
}
|
||||||
|
|
||||||
reload(){
|
reload(){
|
||||||
echo -n $"Reloading configuration: "
|
echo -n $"Reloading configuration: "
|
||||||
killproc $prog -HUP
|
killproc $exe -HUP
|
||||||
RETVAL=$?
|
RETVAL=$?
|
||||||
echo
|
echo
|
||||||
return $RETVAL
|
return $RETVAL
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Summary: Helps troubleshoot SELinux problems
|
Summary: Helps troubleshoot SELinux problems
|
||||||
Name: setroubleshoot
|
Name: setroubleshoot
|
||||||
Version: 0.14
|
Version: 0.15
|
||||||
Release: 1
|
Release: 1
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
@ -78,6 +78,7 @@ rm -rf %{buildroot}
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc %{pkgdocdir}
|
%doc %{pkgdocdir}
|
||||||
|
%{_bindir}/*
|
||||||
%{_sbindir}/*
|
%{_sbindir}/*
|
||||||
%{auditlibdir}/*
|
%{auditlibdir}/*
|
||||||
%{pkgpythondir}
|
%{pkgpythondir}
|
||||||
@ -93,6 +94,11 @@ rm -rf %{buildroot}
|
|||||||
%{_datadir}/pixmaps/*png
|
%{_datadir}/pixmaps/*png
|
||||||
|
|
||||||
%changelog
|
%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
|
* Sat Jul 22 2006 Dan Walsh <dwalsh@redhat.com> - 0.13-1
|
||||||
- Fixes to plugins
|
- Fixes to plugins
|
||||||
- Fixes to dispatcher
|
- Fixes to dispatcher
|
||||||
|
Loading…
Reference in New Issue
Block a user