diff options
author | Iacopo Isimbaldi <isiachi@rhye.it> | 2017-08-19 20:43:22 +0100 |
---|---|---|
committer | Iacopo Isimbaldi <isiachi@rhye.it> | 2017-08-19 20:43:22 +0100 |
commit | e44f8f56a7fc2778a583f7021cde14761c29ebc1 (patch) | |
tree | 5ee408f850669d7698761f520e34e5541a21df69 | |
parent | Updated to pkgver 0.7.1 (diff) | |
download | zfs-dkms-e44f8f56a7fc2778a583f7021cde14761c29ebc1.tar.xz |
Updated to pkgrel 2
Fixed typo in zfs.initcpio.hook
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 2 | ||||
-rw-r--r-- | zfs.initcpio.hook | 2 |
3 files changed, 5 insertions, 5 deletions
@@ -1,8 +1,8 @@ # Generated by mksrcinfo v8 -# Sun Aug 13 16:30:38 UTC 2017 +# Sat Aug 19 19:42:57 UTC 2017 pkgbase = zfs-dkms pkgver = 0.7.1 - pkgrel = 1 + pkgrel = 2 url = http://zfsonlinux.org/ arch = i686 arch = x86_64 @@ -21,7 +21,7 @@ pkgbase = zfs-dkms pkgname = zfs-dkms pkgdesc = Kernel modules for the Zettabyte File System. depends = spl-dkms=0.7.1 - depends = zfs-utils=0.7.1-1 + depends = zfs-utils=0.7.1-2 depends = dkms provides = zfs conflicts = zfs-git @@ -5,7 +5,7 @@ pkgbase="zfs-dkms" pkgname=("zfs-dkms" "zfs-utils") pkgver=0.7.1 -pkgrel=1 +pkgrel=2 license=('CDDL') makedepends=("git" "spl-dkms=${pkgver}") arch=("i686" "x86_64") diff --git a/zfs.initcpio.hook b/zfs.initcpio.hook index 222a7e1..7288ab8 100644 --- a/zfs.initcpio.hook +++ b/zfs.initcpio.hook @@ -39,7 +39,7 @@ zfs_mount_handler () { local pool="${ZFS_DATASET%%/*}" local rwopt_exp="${rwopt:-ro}" - if ! zpool list -H "${pool}" 2&>1 > /dev/null ; then + if ! zpool list -H "${pool}" 2>&1 > /dev/null ; then if [ ! "${rwopt_exp}" = "rw" ]; then msg "ZFS: Importing pool ${pool} readonly." ZPOOL_IMPORT_FLAGS="${ZPOOL_IMPORT_FLAGS} -o readonly=on" |