2 # shellcheck disable=SC2154
4 # This script is designed to facilitate in-tree development and testing
5 # by installing symlinks on your system which refer to in-tree helper
6 # utilities. These helper utilities must be installed to in order to
7 # exercise all ZFS functionality. By using symbolic links and keeping
8 # the scripts in-tree during development they can be easily modified
9 # and those changes tracked.
11 # Use the following configuration option to override the installation
12 # paths for these scripts. The correct path is automatically set for
13 # most distributions but you can optionally set it for your environment.
15 # --with-mounthelperdir=DIR install mount.zfs in dir [/sbin]
16 # --with-udevdir=DIR install udev helpers [default=check]
17 # --with-udevruledir=DIR install udev rules [default=UDEVDIR/rules.d]
18 # --sysconfdir=DIR install zfs configuration files [PREFIX/etc]
21 BASE_DIR
=$
(dirname "$0")
22 SCRIPT_COMMON
=common.sh
23 if [ -f "${BASE_DIR}/${SCRIPT_COMMON}" ]; then
24 .
"${BASE_DIR}/${SCRIPT_COMMON}"
26 echo "Missing helper script ${SCRIPT_COMMON}" && exit 1
36 echo "${PROG}: $1" >&2
41 if [ "$VERBOSE" = "yes" ]; then
52 Install/remove the ZFS helper utilities.
57 -i Install the helper utilities
58 -r Remove the helper utilities
67 while getopts 'hdirv' OPTION
; do
94 if [ "$INSTALL" = "yes" ] && [ "$REMOVE" = "yes" ]; then
95 fail
"Specify -i or -r but not both"
98 if [ "$INSTALL" = "no" ] && [ "$REMOVE" = "no" ]; then
99 fail
"Either -i or -r must be specified"
102 if [ "$(id -u)" != "0" ]; then
103 fail
"Must run as root"
106 if [ "$INTREE" != "yes" ]; then
107 fail
"Must be run in-tree"
110 if [ "$VERBOSE" = "yes" ]; then
111 echo "--- Configuration ---"
112 echo "udevdir: $INSTALL_UDEV_DIR"
113 echo "udevruledir: $INSTALL_UDEV_RULE_DIR"
114 echo "mounthelperdir: $INSTALL_MOUNT_HELPER_DIR"
115 echo "sysconfdir: $INSTALL_SYSCONF_DIR"
116 echo "pythonsitedir: $INSTALL_PYTHON_DIR"
117 echo "dryrun: $DRYRUN"
125 if [ -h "$dst" ]; then
126 echo "Symlink exists: $dst"
127 elif [ -e "$dst" ]; then
128 echo "File exists: $dst"
129 elif [ ! -e "$src" ]; then
130 echo "Source missing: $src"
132 msg
"ln -s $src $dst"
134 if [ "$DRYRUN" = "no" ]; then
135 DIR
=$
(dirname "$dst")
136 mkdir
-p "$DIR" >/dev
/null
2>&1
145 if [ -h "$dst" ]; then
148 DIR
=$
(dirname "$dst")
149 rmdir "$DIR" >/dev
/null
2>&1
150 elif [ -e "$dst" ]; then
151 echo "Expected symlink: $dst"
155 if [ "${INSTALL}" = "yes" ]; then
156 install "$CMD_DIR/mount_zfs/mount.zfs" \
157 "$INSTALL_MOUNT_HELPER_DIR/mount.zfs"
158 install "$CMD_DIR/fsck_zfs/fsck.zfs" \
159 "$INSTALL_MOUNT_HELPER_DIR/fsck.zfs"
160 install "$CMD_DIR/zvol_id/zvol_id" \
161 "$INSTALL_UDEV_DIR/zvol_id"
162 install "$CMD_DIR/vdev_id/vdev_id" \
163 "$INSTALL_UDEV_DIR/vdev_id"
164 install "$UDEV_RULE_DIR/60-zvol.rules" \
165 "$INSTALL_UDEV_RULE_DIR/60-zvol.rules"
166 install "$UDEV_RULE_DIR/69-vdev.rules" \
167 "$INSTALL_UDEV_RULE_DIR/69-vdev.rules"
168 install "$UDEV_RULE_DIR/90-zfs.rules" \
169 "$INSTALL_UDEV_RULE_DIR/90-zfs.rules"
170 install "$CMD_DIR/zpool/zpool.d" \
171 "$INSTALL_SYSCONF_DIR/zfs/zpool.d"
172 install "$CONTRIB_DIR/pyzfs/libzfs_core" \
173 "$INSTALL_PYTHON_DIR/libzfs_core"
174 # Ideally we would install these in the configured ${libdir}, which is
175 # by default "/usr/local/lib and unfortunately not included in the
176 # dynamic linker search path.
177 install "$(find "$LIB_DIR/libzfs_core
" -type f -name 'libzfs_core.so*')" \
178 "/lib/libzfs_core.so"
179 install "$(find "$LIB_DIR/libnvpair
" -type f -name 'libnvpair.so*')" \
183 remove
"$INSTALL_MOUNT_HELPER_DIR/mount.zfs"
184 remove
"$INSTALL_MOUNT_HELPER_DIR/fsck.zfs"
185 remove
"$INSTALL_UDEV_DIR/zvol_id"
186 remove
"$INSTALL_UDEV_DIR/vdev_id"
187 remove
"$INSTALL_UDEV_RULE_DIR/60-zvol.rules"
188 remove
"$INSTALL_UDEV_RULE_DIR/69-vdev.rules"
189 remove
"$INSTALL_UDEV_RULE_DIR/90-zfs.rules"
190 remove
"$INSTALL_SYSCONF_DIR/zfs/zpool.d"
191 remove
"$INSTALL_PYTHON_DIR/libzfs_core"
192 remove
"/lib/libzfs_core.so"
193 remove
"/lib/libnvpair.so"