1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
Name: fcoe-utils
Version: @VERSION@
Release: 1%{?dist}
Summary: Fibre Channel over Ethernet utilities
Group: Applications/System
License: GPLv2
URL: http://www.open-fcoe.org
Source0: http://www.open-fcoe.org/openfc/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: libHBAAPI-devel lldpad-devel libpciaccess0
Requires: lldpad
Requires(post): chkconfig
Requires(preun): chkconfig initscripts
Requires(postun): initscripts
%description
Fibre Channel over Ethernet utilities
fcoeadm - command line tool for configuring FCoE interfaces
fcoemon - service to configure DCB Ethernet QOS filters, works with dcbd
%prep
%setup -q
%build
%configure
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
%post
/sbin/chkconfig --add fcoe
%preun
if [ $1 = 0 ]; then
/sbin/service fcoe stop
/sbin/chkconfig --del fcoe
fi
%postun
if [ $1 = 1 ]; then
/sbin/service fcoe condrestart
fi
%files
%defattr(-,root,root,-)
%doc README
%doc COPYING
%{_sbindir}/*
%{_mandir}/man8/*
%{_sysconfdir}/fcoe
%config(noreplace) %{_sysconfdir}/fcoe/config
%{_sysconfdir}/init.d/fcoe
%changelog
* Mon Mar 2 2009 Chris Leech <christopher.leech@intel.com> - 1.0.7-1
- initial rpm build of fcoe tools
|