diff options
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/Makefile.am | 4 | ||||
-rw-r--r-- | cmd/fsck_zfs/Makefile.am | 1 | ||||
-rwxr-xr-x | cmd/fsck_zfs/fsck.zfs | 9 |
3 files changed, 12 insertions, 2 deletions
diff --git a/cmd/Makefile.am b/cmd/Makefile.am index afdba3440..22f3ee03d 100644 --- a/cmd/Makefile.am +++ b/cmd/Makefile.am @@ -1,2 +1,2 @@ -SUBDIRS = zfs zpool zdb zhack zinject zstreamdump ztest zpios mount_zfs -SUBDIRS += zpool_layout zvol_id zpool_id vdev_id +SUBDIRS = zfs zpool zdb zhack zinject zstreamdump ztest zpios +SUBDIRS += mount_zfs fsck_zfs zpool_layout zvol_id zpool_id vdev_id diff --git a/cmd/fsck_zfs/Makefile.am b/cmd/fsck_zfs/Makefile.am new file mode 100644 index 000000000..2380f56fa --- /dev/null +++ b/cmd/fsck_zfs/Makefile.am @@ -0,0 +1 @@ +dist_sbin_SCRIPTS = fsck.zfs diff --git a/cmd/fsck_zfs/fsck.zfs b/cmd/fsck_zfs/fsck.zfs new file mode 100755 index 000000000..f1685db65 --- /dev/null +++ b/cmd/fsck_zfs/fsck.zfs @@ -0,0 +1,9 @@ +#!/bin/sh +# +# fsck.zfs: A fsck helper to accomidate distributions that expect +# to be able to execute a fsck on all filesystem types. Currently +# this script does nothing but it could be extended to act as a +# compatibility wrapper for 'zpool scrub'. +# + +exit 0 |