Alan Somers wrote this message on Sun, Aug 05, 2018 at 11:35 -0600: > On Sun, Aug 5, 2018 at 5:39 AM, Jeffrey Bouquet <jbtakk_at_iherebuywisely.com> > wrote: > > > > > > > On Sun, 5 Aug 2018 03:19:48 +0200, Lars Schotte <lars_at_gustik.eu> wrote: > > > > > somehow installworld fails lately > > > > > > ===> share/examples (install) > > > if [ -L /usr/share/examples/BSD_daemon ]; then rm -f > > /usr/share/examples/BSD_daemon; fi > > > if [ -L /usr/share/examples/FreeBSD_version ]; then rm -f > > /usr/share/examples/FreeBSD_version; fi > > > if [ -L /usr/share/examples/IPv6 ]; then rm -f > > /usr/share/examples/IPv6; fi > > > if [ -L /usr/share/examples/bootforth ]; then rm -f > > /usr/share/examples/bootforth; fi > > > if [ -L /usr/share/examples/csh ]; then rm -f /usr/share/examples/csh; > > fi > > > if [ -L /usr/share/examples/diskless ]; then rm -f > > /usr/share/examples/diskless; fi > > > if [ -L /usr/share/examples/drivers ]; then rm -f > > /usr/share/examples/drivers; fi > > > if [ -L /usr/share/examples/etc ]; then rm -f /usr/share/examples/etc; > > fi > > > if [ -L /usr/share/examples/find_interface ]; then rm -f > > /usr/share/examples/find_interface; fi > > > if [ -L /usr/share/examples/ibcs2 ]; then rm -f > > /usr/share/examples/ibcs2; fi > > > if [ -L /usr/share/examples/indent ]; then rm -f > > /usr/share/examples/indent; fi > > > if [ -L /usr/share/examples/ipfw ]; then rm -f > > /usr/share/examples/ipfw; fi > > > if [ -L /usr/share/examples/jails ]; then rm -f > > /usr/share/examples/jails; fi > > > if [ -L /usr/share/examples/kld ]; then rm -f /usr/share/examples/kld; > > fi > > > if [ -L /usr/share/examples/libvgl ]; then rm -f > > /usr/share/examples/libvgl; fi > > > if [ -L /usr/share/examples/mdoc ]; then rm -f > > /usr/share/examples/mdoc; fi > > > if [ -L /usr/share/examples/netgraph ]; then rm -f > > /usr/share/examples/netgraph; fi > > > if [ -L /usr/share/examples/perfmon ]; then rm -f > > /usr/share/examples/perfmon; fi > > > if [ -L /usr/share/examples/ppi ]; then rm -f /usr/share/examples/ppi; > > fi > > > if [ -L /usr/share/examples/ppp ]; then rm -f /usr/share/examples/ppp; > > fi > > > if [ -L /usr/share/examples/printing ]; then rm -f > > /usr/share/examples/printing; fi > > > if [ -L /usr/share/examples/ses ]; then rm -f /usr/share/examples/ses; > > fi > > > if [ -L /usr/share/examples/scsi_target ]; then rm -f > > /usr/share/examples/scsi_target; fi > > > if [ -L /usr/share/examples/sunrpc ]; then rm -f > > /usr/share/examples/sunrpc; fi > > > if [ -L /usr/share/examples/ypldap ]; then rm -f > > /usr/share/examples/ypldap; fi > > > if [ -L /usr/share/examples/bhyve ]; then rm -f > > /usr/share/examples/bhyve; fi > > > if [ -L /usr/share/examples/uefisign ]; then rm -f > > /usr/share/examples/uefisign; fi > > > if [ -L /usr/share/examples/hast ]; then rm -f > > /usr/share/examples/hast; fi > > > if [ -L /usr/share/examples/libusb20 ]; then rm -f > > /usr/share/examples/libusb20; fi > > > (cd /usr/src/etc; make MK_MAKE_CHECK_USE_SANDBOX=yes etc-examples) > > > cd /usr/src/etc; install -o root -g wheel -m 444 crontab devd.conf > > devfs.conf ddb.conf dhclient.conf disktab fbtab gettytab group > > hosts hosts.allow hosts.equiv libalias.conf libmap.conf login.access > > login.conf mac.conf motd netconfig networks newsyslog.conf > > nsswitch.conf phones profile protocols rc.bsdextended rc.firewall > > remote rpc services sysctl.conf syslog.conf termcap.small > > etc.amd64/ttys amd.map auto_master ftpusers inetd.conf > > /usr/src/usr.bin/locate/locate/locate.rc hosts.lpd printcap > > /usr/src/usr.bin/mail/misc/mail.rc ntp.conf pf.os rc.sendmail csh.cshrc > > csh.login csh.logout regdomain.xml nsmb.conf opieaccess > > /usr/share/examples/etc > > > install: auto_master: No such file or directory > > > *** Error code 71 > > > > > > Stop. > > > make[6]: stopped in /usr/src/etc > > > *** Error code 1 > > > > > > Stop. > > > make[5]: stopped in /usr/src/share/examples > > > *** Error code 1 > > > > > > Stop. > > > make[4]: stopped in /usr/src/share > > > *** Error code 1 > > > > > > Stop. > > > make[3]: stopped in /usr/src > > > *** Error code 1 > > > > > > Stop. > > > make[2]: stopped in /usr/src > > > *** Error code 1 > > > > > > Stop. > > > make[1]: stopped in /usr/src > > > *** Error code 1 > > > > > > Stop. > > > make: stopped in /usr/src > > > # less UPDATING > > > # svn up > > > Updating '.': > > > At revision 337340. > > > > > > > > > -- > > > Lars Schotte > > > Mudro??ova 13 > > > 92101 Pie????any > > > _______________________________________________ > > > freebsd-current_at_freebsd.org mailing list > > > https://lists.freebsd.org/mailman/listinfo/freebsd-current > > > To unsubscribe, send any mail to "freebsd-current-unsubscribe_at_ > > freebsd.org" > > > > > > It's been on my wishlist that buildworld includes a 'fake installworld, > > copying > > /bin /usr/bin subtrees into a chroot or something... ' so if the > > real one fails, where it installed to could be copied onto / ... with gcp > > -R or some > > such, and the procedure included in UPDATING. > > > > > Alas this isn't possible to do in buildworld, because it would require root > privileges. buildworld needs to be done in environments where those > privileges aren't available, like on universe12a.freebsd.org. You can run installworld w/o root privs: # -DNO_ROOT install without using root privilege -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not."Received on Tue Aug 07 2018 - 12:49:35 UTC
This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:41:17 UTC