From 41b9afe0372ba4bcbb33bfe29eed244592b4b1d1 Mon Sep 17 00:00:00 2001 From: Omar Vega Ramos Date: Mon, 2 May 2016 13:56:56 -0500 Subject: Removing zfs-utils-git. Use zfs-utils instead --- pcr/zfs-utils-git/zfs-utils.initcpio.install | 104 --------------------------- 1 file changed, 104 deletions(-) delete mode 100644 pcr/zfs-utils-git/zfs-utils.initcpio.install (limited to 'pcr/zfs-utils-git/zfs-utils.initcpio.install') diff --git a/pcr/zfs-utils-git/zfs-utils.initcpio.install b/pcr/zfs-utils-git/zfs-utils.initcpio.install deleted file mode 100644 index c128d1006..000000000 --- a/pcr/zfs-utils-git/zfs-utils.initcpio.install +++ /dev/null @@ -1,104 +0,0 @@ -#!/bin/bash - -build() { - map add_module \ - zavl \ - znvpair \ - zunicode \ - zcommon \ - zfs \ - zpios \ - spl \ - splat \ - zlib_deflate - - map add_binary \ - arcstat.py \ - dbufstat.py \ - fsck.zfs \ - mount.zfs \ - zdb \ - zed \ - zfs \ - zhack \ - zinject \ - zpios \ - zpool \ - zstreamdump \ - ztest \ - splat \ - hostid \ - /lib/udev/vdev_id \ - /lib/udev/zvol_id - - map add_file \ - /lib/udev/rules.d/60-zvol.rules \ - /lib/udev/rules.d/69-vdev.rules \ - /lib/udev/rules.d/90-zfs.rules - - map add_dir \ - /etc/zfs/zed.d - - add_runscript - - # allow mount(8) to "autodetect" ZFS - echo 'zfs' >>"$BUILDROOT/etc/filesystems" - - [[ -f /etc/zfs/zpool.cache ]] && add_file "/etc/zfs/zpool.cache" - [[ -f /etc/modprobe.d/zfs.conf ]] && add_file "/etc/modprobe.d/zfs.conf" - [[ -f /etc/hostid ]] && add_file "/etc/hostid" -} - -help() { - cat< - - To force importing of a ZFS pool: - - zfs_force=1 - - If set to 1, this will use "zpool import -f" when attempting to import - pools. - - To search for devices in a directory other than "/dev": - - zfs_import_dir=/dev/disk/by-uuid - or - zfs_import_dir=/dev/disk/by-partuuid - or - zfs_import_dir=/dev/disk/by-path - etc. - - Following initcpio convention, the 'rw' option must be specified to load the - pool as read/write. Pools are loaded as read only by default. - -Examples: - - To use bootfs on your pool, use - - zfs=bootfs rw - - This will setup your root using tank/root zfs pool. - - zfs=tank/root rw - -If you want to set properties for zfs-on-linux module, you should add them to -/etc/modprobe.d/zfs.conf and then rebuild initcpio. - -HELPEOF -} - -# vim: set ts=4 sw=4 ft=sh et: -- cgit v1.2.3-2-g168b