Solved freebsd-update not sure if I messed up

Hello,

I have a question question...

I just ran the following 2 commands to update my system..
freebsd-update fetch
freebsd-update install

All went well at first glace.

Straight after I then ran ezjail-admin update -u.
My question is; is the following outcome normal?
Code:
.......//...........
/usr/libdata/pkgconfig/libusb-1.0.pc
/usr/libdata/pkgconfig/libusb-2.0.pc
/usr/libdata/pkgconfig/zlib.pc
/usr/libexec
/usr/libexec/ld-elf32.so.1
/usr/src/crypto/openssl/util/mkbuildinf.pl
Installing updates...install: mkdir /local/jails/newjail//libexec: File exists
install: mkdir /local/jails/newjail//usr/bin: File exists
install: mkdir /local/jails/newjail//usr/lib32: File exists
install: mkdir /local/jails/newjail//usr/lib32: File exists
install: mkdir /local/jails/newjail//usr/lib32: File exists
install: mkdir /local/jails/newjail//usr/lib32: File exists
install: mkdir /local/jails/newjail//usr/libdata: File exists
install: mkdir /local/jails/newjail//usr/libdata: File exists
install: mkdir /local/jails/newjail//usr/libexec: File exists
install: /local/jails/newjail//libexec/ld-elf32.so.1: No such file or directory
chflags: /local/jails/newjail//libexec/ld-elf32.so.1: No such file or directory
Am I suppose to get the File exists and No such file or directory messages?

Thank you
Fred
 
Nothing to worry about. /libexec/ resides on the jailhost only.
During the update it wants to install to /local/jails/newjail//libexec/ (note the double slash) which does not exist in jails. Therefore the complaint "No such file or directory"
 
Back
Top