blob: 74e681e0d41b56432ca8f20776e410c0ccb40708 (
plain)
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
71
|
Name: nvme
Version: @@VERSION@@
Release: 1%{?dist}
Summary: Core nvme tools
License: GPL
Group: Development/Tools
URL: https://github.com/linux-nvme/nvme-cli/
Source: nvme-@@VERSION@@.tar.gz
Provides: nvme
Requires(post): util-linux
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
NVMe is a fast, scalable, direct attached storage interface. The nvme
cli rpm installs core management tools with minimal dependencies.
%prep
%setup
%build
make
%install
rm -rf $RPM_BUILD_ROOT
make install-spec DESTDIR=%{buildroot} PREFIX=/usr
%files
%defattr(-,root,root)
%doc Documentation/nvme*.1
%{_sbindir}/nvme
%{_mandir}/man1/nvme*.1*
%{_datadir}/bash-completion/completions/nvme
%{_datadir}/zsh/site-functions/_nvme
%dir %{_sysconfdir}/nvme
%{_sysconfdir}/nvme/hostnqn
%{_sysconfdir}/nvme/hostid
%{_sysconfdir}/nvme/discovery.conf
%{_sysconfdir}/udev/rules.d/70-nvmf-autoconnect.rules
%{_sysconfdir}/udev/rules.d/71-nvmf-iopolicy-netapp.rules
%{_libdir}/dracut/dracut.conf.d/70-nvmf-autoconnect.conf
%{_libdir}/systemd/system/nvmf-connect@.service
%{_libdir}/systemd/system/nvmefc-boot-connections.service
%{_libdir}/systemd/system/nvmf-connect.target
%{_libdir}/systemd/system/nvmf-autoconnect.service
%clean
rm -rf $RPM_BUILD_ROOT
%post
if [ $1 -eq 1 ]; then # 1 : This package is being installed for the first time
if [ ! -s %{_sysconfdir}/nvme/hostnqn ]; then
echo $(nvme gen-hostnqn) > %{_sysconfdir}/nvme/hostnqn
fi
if [ ! -s %{_sysconfdir}/nvme/hostid ]; then
uuidgen > %{_sysconfdir}/nvme/hostid
fi
# apply udev and systemd changes that we did
systemctl daemon-reload
udevadm control --reload-rules && udevadm trigger
fi
%changelog
* Tue Dec 17 2019 Simon Schricker <sschricker@suse.de>
- Add new udev rules to set iopolicy for NetApp devices
* Mon Oct 15 2018 Eyal Ben-David <eyalbe@il.ibm.com> - 1.6.81.g899a-2
- bash-completion check
* Thu Oct 15 2015 Keith Busch <keith.busch@intel.com>
- Initial RPM spec
|