Skip to content

Commit

Permalink
Fix typo in %post scriptlet lines
Browse files Browse the repository at this point in the history
Missing space made the %post directive be part of the package
%description and not have a %post scriptlet defined.

Signed-off-by: Andy Bakun <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #2961
  • Loading branch information
thwarted authored and behlendorf committed Dec 23, 2014
1 parent 73fd1f4 commit c3db49a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rpm/generic/zfs.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Group: System Environment/Kernel
This package contains the zpool library, which provides support
for managing zpools

%post-n libzpool2 -p /sbin/ldconfig
%post -n libzpool2 -p /sbin/ldconfig
%postun -n libzpool2 -p /sbin/ldconfig

%package -n libnvpair1
Expand All @@ -119,7 +119,7 @@ pairs. This functionality is used to portably transport data across
process boundaries, between kernel and user space, and can be used
to write self describing data structures on disk.

%post-n libnvpair1 -p /sbin/ldconfig
%post -n libnvpair1 -p /sbin/ldconfig
%postun -n libnvpair1 -p /sbin/ldconfig

%package -n libuutil1
Expand All @@ -137,7 +137,7 @@ This library provides a variety of compatibility functions for ZFS on Linux:
partitioning.
* libshare: NFS, SMB, and iSCSI service integration for ZFS.

%post-n libuutil1 -p /sbin/ldconfig
%post -n libuutil1 -p /sbin/ldconfig
%postun -n libuutil1 -p /sbin/ldconfig

%package -n libzfs2
Expand All @@ -147,7 +147,7 @@ Group: System Environment/Kernel
%description -n libzfs2
This package provides support for managing ZFS filesystems

%post-n libzfs2 -p /sbin/ldconfig
%post -n libzfs2 -p /sbin/ldconfig
%postun -n libzfs2 -p /sbin/ldconfig

%package -n libzfs2-devel
Expand Down

0 comments on commit c3db49a

Please sign in to comment.