diff options
author | erdgeist <erdgeist@erdgeist.org> | 2013-04-20 00:49:58 +0000 |
---|---|---|
committer | erdgeist <erdgeist@erdgeist.org> | 2013-04-20 00:49:58 +0000 |
commit | 40aa45474ae7f35227db8590468e37754f6b9bcf (patch) | |
tree | cf5228af1502c35a3b8bffc775e8a59797db7d1a | |
parent | e38c8e43ef26eacffdfeaba417ac564b13ff757d (diff) |
Properly close quotes
-rwxr-xr-x | ezjail-admin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ezjail-admin b/ezjail-admin index 1081388..be95450 100755 --- a/ezjail-admin +++ b/ezjail-admin | |||
@@ -625,7 +625,7 @@ create) | |||
625 | [ "${ezjail_imagesize}" ] && ezjail_zfs_jail_properties="${ezjail_zfs_jail_properties} -o quota=${ezjail_imagesize}" | 625 | [ "${ezjail_imagesize}" ] && ezjail_zfs_jail_properties="${ezjail_zfs_jail_properties} -o quota=${ezjail_imagesize}" |
626 | [ -d "${ezjail_jaildir}/${ezjail_hostname}" ] && exerr "Error: Could not create jail root mount point ${ezjail_rootdir}" | 626 | [ -d "${ezjail_jaildir}/${ezjail_hostname}" ] && exerr "Error: Could not create jail root mount point ${ezjail_rootdir}" |
627 | 627 | ||
628 | check_for_zfs_exist "${ezjail_parentfs} || exerr "Error: The parent zfs dataset does not exist.\n Use 'zfs create -p ${ezjail_parentfs}' to create it." | 628 | check_for_zfs_exist "${ezjail_parentfs}" || exerr "Error: The parent zfs dataset does not exist.\n Use 'zfs create -p ${ezjail_parentfs}' to create it." |
629 | 629 | ||
630 | /sbin/zfs create -o mountpoint=${ezjail_rootdir} ${ezjail_zfs_jail_properties} ${ezjail_parentfs}/${ezjail_hostname} | 630 | /sbin/zfs create -o mountpoint=${ezjail_rootdir} ${ezjail_zfs_jail_properties} ${ezjail_parentfs}/${ezjail_hostname} |
631 | else | 631 | else |