diff options
author | allanjude <allanjude@FreeBSD.org> | 2015-07-13 17:40:24 +0000 |
---|---|---|
committer | allanjude <allanjude@FreeBSD.org> | 2015-07-13 17:40:24 +0000 |
commit | 4067f24f019e2b0aab02cee85d03d1696f8586c4 (patch) | |
tree | c1a9f60fcd151bdc728010191a07064e78f84e22 /usr.sbin/bsdinstall | |
parent | d576761ee86f5eb0ec708c8dcc19a3abe4c7dcb1 (diff) | |
download | FreeBSD-src-4067f24f019e2b0aab02cee85d03d1696f8586c4.zip FreeBSD-src-4067f24f019e2b0aab02cee85d03d1696f8586c4.tar.gz |
Fix a typo in bsdinstall
A variable was misspelled resulting in chmod executing on the installer instead of on the target chroot
PR: 191402
Submitted by: Martin Simmons <martin@lispworks.com>
Approved by: brueffer
MFC after: 3 days
Sponsored by: ScaleEngine Inc.
Differential Revision: https://reviews.freebsd.org/D3061
Diffstat (limited to 'usr.sbin/bsdinstall')
-rwxr-xr-x | usr.sbin/bsdinstall/scripts/zfsboot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bsdinstall/scripts/zfsboot b/usr.sbin/bsdinstall/scripts/zfsboot index c759e85..f4388be 100755 --- a/usr.sbin/bsdinstall/scripts/zfsboot +++ b/usr.sbin/bsdinstall/scripts/zfsboot @@ -1241,7 +1241,7 @@ zfs_create_boot() local dir for dir in /tmp /var/tmp; do f_eval_catch $funcname chmod "$CHMOD_MODE" 1777 \ - $BSDINSTALL_CHROOTDIR$dir || return $FAILURE + $BSDINSTALL_CHROOT$dir || return $FAILURE done # Create symlink(s) |