rpms/mt-st/F-12 mt-st.spec,1.30,1.31 stinit.init,1.1,1.2

Dan Horák sharkcz at fedoraproject.org
Tue Dec 1 08:39:44 UTC 2009


Author: sharkcz

Update of /cvs/pkgs/rpms/mt-st/F-12
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15640

Modified Files:
	mt-st.spec stinit.init 
Log Message:
* Thu Nov 26 2009 Dan Horák <dan[at]danny.cz> - 1.1-4
- stinit initscript updated (#541592)
- fixed License



Index: mt-st.spec
===================================================================
RCS file: /cvs/pkgs/rpms/mt-st/F-12/mt-st.spec,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -p -r1.30 -r1.31
--- mt-st.spec	25 Jul 2009 15:19:18 -0000	1.30
+++ mt-st.spec	1 Dec 2009 08:39:44 -0000	1.31
@@ -1,8 +1,8 @@
 Summary: Tool for controlling tape drives
 Name: mt-st
 Version: 1.1
-Release: 3%{?dist}
-License: GPLv2
+Release: 4%{?dist}
+License: GPL+
 Group: Applications/System
 URL: ftp://ftp.ibiblio.org/pub/linux/system/backup
 Source0: ftp://metalab.unc.edu/pub/Linux/system/backup/mt-st-%{version}.tar.gz
@@ -13,8 +13,8 @@ Patch2: mt-st-0.7-config-files.patch
 Patch3: mt-st-0.9b-manfix.patch
 Patch4: mt-st-1.1-mtio.patch
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-Requires(post): /sbin/chkconfig
-Requires(preun): /sbin/chkconfig
+Requires(post): chkconfig
+Requires(preun): chkconfig
 
 %description
 The mt-st package contains the mt and st tape drive management
@@ -23,6 +23,7 @@ can control rewinding, ejecting, skippin
 
 Install mt-st if you need a tool to  manage tape drives.
 
+
 %prep
 %setup -q
 %patch0 -p1 -b .redhat
@@ -37,16 +38,20 @@ iconv -f ISO8859-1 -t UTF-8 -o $f.new $f
 touch -r $f $f.new
 mv $f.new $f
 
+
 %build
 make CFLAGS="$RPM_OPT_FLAGS"
 
+
 %install
-rm -rf ${RPM_BUILD_ROOT}
+rm -rf $RPM_BUILD_ROOT
 make install mandir=%{_mandir}
 install -D -p -m 0755 %{SOURCE1} $RPM_BUILD_ROOT%{_initddir}/stinit
 
+
 %clean
-rm -rf ${RPM_BUILD_ROOT}
+rm -rf $RPM_BUILD_ROOT
+
 
 %post
 /sbin/chkconfig --add stinit
@@ -56,15 +61,21 @@ if [ $1 -eq 0 ]; then
     /sbin/chkconfig --del stinit
 fi
 
+
 %files
-%defattr(-,root,root)
+%defattr(-,root,root,-)
 %doc COPYING README README.stinit mt-st-1.1.lsm stinit.def.examples
 /bin/mt
 /sbin/stinit
 %{_mandir}/man[18]/*
 %{_initddir}/stinit
 
+
 %changelog
+* Thu Nov 26 2009 Dan Horák <dan[at]danny.cz> - 1.1-4
+- stinit initscript updated (#541592)
+- fixed License
+
 * Sat Jul 25 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1.1-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
 


Index: stinit.init
===================================================================
RCS file: /cvs/pkgs/rpms/mt-st/F-12/stinit.init,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- stinit.init	26 May 2008 12:57:18 -0000	1.1
+++ stinit.init	1 Dec 2009 08:39:44 -0000	1.2
@@ -1,21 +1,35 @@
 #!/bin/bash
 #
-# stinit	This calls /sbin/stinit if /etc/stinit.def exists
+# stinit	Initialize SCSI tape drives
 # 
-# chkconfig: 2345 40 99
-# description: calls stinit if /etc/stinit.def exists
+# chkconfig: - 90 10
+# description: Initialize SCSI tape drives with /sbin/stinit
+# config: /etc/stinit.def
+
+# BEGIN INIT INFO
+# Provides:          stinit
+# Default-Start:
+# Default-Stop:      0 1 2 3 4 5 6
+# Short-Description: Initialize SCSI tape drives
+# Description:       Initialize SCSI tape drives
+# END INIT INFO
 
 . /etc/init.d/functions
 
+exec=/sbin/stinit
+config=/etc/stinit.def
+
 # See how we were called.
 case "$1" in
   start)
-	[ -f /etc/stinit.def ] && /sbin/stinit
+        [ -x $exec ] || exit 5
+        [ -f $config ] || exit 6
+	$exec
         ;;
   stop)
 	;;
   *)
         echo $"Usage: $0 {start}"
-        exit 1
+        exit 2
 esac
 exit 0




More information about the fedora-extras-commits mailing list