diff options
Diffstat (limited to 'usr.sbin/bsdinstall/scripts/auto')
-rwxr-xr-x | usr.sbin/bsdinstall/scripts/auto | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/bsdinstall/scripts/auto b/usr.sbin/bsdinstall/scripts/auto index e2e3d52..95b401ae 100755 --- a/usr.sbin/bsdinstall/scripts/auto +++ b/usr.sbin/bsdinstall/scripts/auto @@ -390,7 +390,8 @@ if [ -n "${mounted_nullfs}" ]; then fi if [ -f /root/factory.sh ]; then - sh /root/factory.sh || error "System configuration failed" + sh -x /root/factory.sh 2>/tmp/factory.debug \ + || error "System configuration failed" fi #bsdinstall rootpass || error "Could not set root password" |