diff options
author | Andy Bakun <[email protected]> | 2014-12-14 20:23:25 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2014-12-18 18:38:33 -0800 |
commit | c0ba93dee6cb62ccbb2c9b3103f15ddbf4680d6e (patch) | |
tree | 48c6681751c51ba94ebff0f1e0e1fbe66f9cdd57 /rpm | |
parent | c66989baaeee5bb4ac06cebfad513e1253f22564 (diff) |
Fix typo in %post scriptlet lines
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
Diffstat (limited to 'rpm')
-rw-r--r-- | rpm/generic/zfs.spec.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rpm/generic/zfs.spec.in b/rpm/generic/zfs.spec.in index c173b2c6e..f2ae78940 100644 --- a/rpm/generic/zfs.spec.in +++ b/rpm/generic/zfs.spec.in @@ -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 @@ -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 @@ -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 @@ -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 |