diff options
author | InsanePrawn <[email protected]> | 2019-11-22 18:48:03 +0100 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2019-11-27 10:53:37 -0800 |
commit | d8ce455c1eb7defb60664f6c6e234e0c4ef62fde (patch) | |
tree | 9737012689af439d7e032869a1c8215e1e08479b /etc | |
parent | 7c1bf0cf27f5947b5094b42e7707f22b28c5f923 (diff) |
Fix small typo in systemd mount generator
Reviewed-by: Antonio Russo <[email protected]>
Reviewed-by: Richard Laager <[email protected]>
Signed-off-by: InsanePrawn <[email protected]>
Closes #9611
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/systemd/system-generators/zfs-mount-generator.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/systemd/system-generators/zfs-mount-generator.in b/etc/systemd/system-generators/zfs-mount-generator.in index be2c1420c..4f9443a91 100755 --- a/etc/systemd/system-generators/zfs-mount-generator.in +++ b/etc/systemd/system-generators/zfs-mount-generator.in @@ -78,7 +78,7 @@ process_line() { if [ "${p_canmount}" = "off" ] ; then return elif [ "${p_canmount}" = "noauto" ] ; then - # Don't let a noauto marked mountpoint block an "auto" market mountpoint + # Don't let a noauto marked mountpoint block an "auto" marked mountpoint return elif [ "${p_canmount}" = "on" ] ; then : # This is OK |