forked from openzfs/zfs
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Based on the init scripts included with Debian GNU/Linux, then take code from the already existing ones, trying to merge them into one set of scripts that will work for 'everyone' for better maintainability. * Add configurable variables to control the workings of the init scripts: * ZFS_INITRD_PRE_MOUNTROOT_SLEEP Set a sleep time before we load the module (used primarily by initrd scripts to allow for USB devices to be availible before we load the zfs module). * ZFS_INITRD_POST_MODPROBE_SLEEP Set a timed sleep in the initrd to after the load of the zfs module. * ZFS_INITRD_ADDITIONAL_DATASETS To allow for mounting additional datasets in the initrd. Primarily used when the filesystem needed to boot isn't directly under the root dataset. * ZFS_POOL_EXCEPTIONS Exclude pools from being imported (in the initrd and/or init scripts). * ZFS_DKMS_ENABLE_DEBUG, ZFS_DKMS_ENABLE_DEBUG_DMU_TX, ZFS_DKMS_DISABLE_STRIP Set to control how dkms should build the packages. * ZPOOL_IMPORT_PATH Set path(s) where "zpool import" should import pools from. This was previously the job of "USE_DISK_BY_ID" (which is still used for backwards compatibility) but was renamed to allow for better control of import path(s). * ZED_ARGS To allow for local options to zed. * The import function, do_import(), imports pools by name instead of '-a'. * Fallback on importing the pool using the cache file (if it exists) if any of the 'by-*' didn't work. * ZED script from the Debian GNU/Linux packages added. * Refreshed ZED init script from behlendorf/zfs@5e7a660 to be portable so it may be used on both LSB and Redhat style systems. * If we're running from init, remove stale /etc/dfs/sharetab before importing pools. * All scripts passes ShellCheck (with one false positive in do_mount()). Signed-off-by: Turbo Fredriksson [email protected] Reviewed by: Richard Yao <[email protected]> Reviewed by: Chris Dunlap <[email protected]> Closes: openzfs#2974, openzfs#2107.
- Loading branch information
Showing
16 changed files
with
1,363 additions
and
790 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
common.init | ||
zfs-import | ||
zfs-mount | ||
zfs-share | ||
zfs-zed | ||
zfs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,44 @@ | ||
initdir = $(DEFAULT_INIT_DIR) | ||
init_SCRIPTS = zfs | ||
init_SCRIPTS = zfs-import zfs-mount zfs-share zfs-zed | ||
|
||
initcommondir = $(sysconfdir)/zfs | ||
initcommon_SCRIPTS = common.init | ||
|
||
initconfdir = $(DEFAULT_INITCONF_DIR) | ||
initconf_SCRIPTS = zfs | ||
|
||
EXTRA_DIST = \ | ||
$(top_srcdir)/etc/init.d/zfs.fedora.in \ | ||
$(top_srcdir)/etc/init.d/zfs.gentoo.in \ | ||
$(top_srcdir)/etc/init.d/zfs.lsb.in \ | ||
$(top_srcdir)/etc/init.d/zfs.lunar.in \ | ||
$(top_srcdir)/etc/init.d/zfs.redhat.in | ||
$(top_srcdir)/etc/init.d/common.init.in \ | ||
$(top_srcdir)/etc/init.d/zfs-share.in \ | ||
$(top_srcdir)/etc/init.d/zfs-import.in \ | ||
$(top_srcdir)/etc/init.d/zfs-mount.in \ | ||
$(top_srcdir)/etc/init.d/zfs-zed.in \ | ||
$(top_srcdir)/etc/init.d/zfs.in | ||
|
||
$(init_SCRIPTS): $(init_SCRIPTS).$(DEFAULT_INIT_SCRIPT).in | ||
-$(SED) -e 's,@bindir\@,$(bindir),g' \ | ||
-e 's,@sbindir\@,$(sbindir),g' \ | ||
-e 's,@udevdir\@,$(udevdir),g' \ | ||
-e 's,@udevruledir\@,$(udevruledir),g' \ | ||
-e 's,@sysconfdir\@,$(sysconfdir),g' \ | ||
-e 's,@initdir\@,$(initdir),g' \ | ||
-e 's,@runstatedir\@,$(runstatedir),g' \ | ||
'$@.$(DEFAULT_INIT_SCRIPT).in' >'$@' | ||
$(init_SCRIPTS) $(initconf_SCRIPTS) $(initcommon_SCRIPTS): | ||
-(if [ -e /etc/debian_version ]; then \ | ||
NFS_SRV=nfs-kernel-server; \ | ||
else \ | ||
NFS_SRV=nfs; \ | ||
fi; \ | ||
if [ -e /etc/gentoo-release ]; then \ | ||
SHELL=/sbin/runscript; \ | ||
else \ | ||
SHELL=/bin/sh; \ | ||
fi; \ | ||
$(SED) -e 's,@bindir\@,$(bindir),g' \ | ||
-e 's,@sbindir\@,$(sbindir),g' \ | ||
-e 's,@udevdir\@,$(udevdir),g' \ | ||
-e 's,@udevruledir\@,$(udevruledir),g' \ | ||
-e 's,@sysconfdir\@,$(sysconfdir),g' \ | ||
-e 's,@initconfdir\@,$(initconfdir),g' \ | ||
-e 's,@initdir\@,$(initdir),g' \ | ||
-e 's,@runstatedir\@,$(runstatedir),g' \ | ||
-e "s,@SHELL\@,$$SHELL,g" \ | ||
-e "s,@NFS_SRV\@,$$NFS_SRV,g" \ | ||
'[email protected]' >'$@'; \ | ||
[ '$@' = 'common.init' -o '$@' = 'zfs' ] || \ | ||
chmod +x '$@') | ||
|
||
distclean-local:: | ||
-$(RM) $(init_SCRIPTS) | ||
-$(RM) $(init_SCRIPTS) $(initcommon_SCRIPTS) $(initconf_SCRIPTS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
DESCRIPTION | ||
These script were written with the primary intention of being portable and | ||
usable on as many systems as possible. | ||
|
||
This is, in practice, usually not possible. But the intention is there. | ||
And it is a good one. | ||
|
||
They have been tested successfully on: | ||
|
||
* Debian GNU/Linux Wheezy | ||
* Debian GNU/Linux Jessie | ||
* Ubuntu Trusty | ||
* CentOS 6.0 | ||
* CentOS 6.6 | ||
* Gentoo | ||
|
||
SUPPORT | ||
If you find that they don't work for your platform, please report this | ||
at the ZFS On Linux issue tracker at https://github.com/zfsonlinux/zfs/issues. | ||
|
||
Please include: | ||
|
||
* Distribution name | ||
* Distribution version | ||
* Where to find an install CD image | ||
* Architecture | ||
|
||
If you have code to share that fixes the problem, that is much better. | ||
But please remember to try your best keep portability in mind. If you | ||
suspect that what you're writing/modifying won't work on anything else | ||
than your distribution, please make sure to put that code in appropriate | ||
if/else/fi code. | ||
|
||
It currently MUST be bash (or fully compatible) for this to work. | ||
|
||
If you're making your own distribution and you want the scripts to | ||
work on that, the biggest problem you'll (probably) have is the part | ||
at the beginning of the "common.init.in" file which sets up the | ||
logging output. | ||
|
||
INSTALLING INIT SCRIPT LINKS | ||
To setup the init script links in /etc/rc?.d manually on a Debian GNU/Linux | ||
(or derived) system, run the following commands (the order is important!): | ||
|
||
update-rc.d zfs-zed start 07 S . stop 08 0 1 6 . | ||
update-rc.d zfs-import start 07 S . stop 07 0 1 6 . | ||
update-rc.d zfs-mount start 02 2 3 4 5 . stop 06 0 1 6 . | ||
update-rc.d zfs-share start 27 2 3 4 5 . stop 05 0 1 6 . | ||
|
||
To do the same on RedHat, Fedora and/or CentOS: | ||
|
||
chkconfig zfs-zed | ||
chkconfig zfs-import | ||
chkconfig zfs-mount | ||
chkconfig zfs-share | ||
|
||
On Gentoo: | ||
|
||
rc-update add zfs-zed sysinit | ||
rc-update add zfs-import sysinit | ||
rc-update add zfs-mount default | ||
rc-update add zfs-share default | ||
|
||
|
||
The idea here is to make sure ZED is started before the imports (so that | ||
we can start consuming pool events before pools are imported). | ||
|
||
Then import any/all pools (except the root pool which is mounted in the | ||
initrd before the system even boots - basically before the S (single-user) | ||
mode). | ||
|
||
Then we mount all filesystems before we start any network service (such as | ||
NFSd, AFSd, Samba, iSCSI targets and what not). Even if the share* in ZFS | ||
isn't used, the filesystem must be mounted for the service to start properly. | ||
|
||
Then, at almost the very end, we share filesystems configured with the | ||
share* property in ZFS. |
Oops, something went wrong.