> -----Original Message----- > From: owner-src-committ...@freebsd.org [mailto:owner-src- > committ...@freebsd.org] On Behalf Of Nathan Whitehorn > Sent: Tuesday, November 11, 2014 11:42 AM > To: Devin Teske; src-committ...@freebsd.org; svn-src-...@freebsd.org; svn- > src-h...@freebsd.org > Subject: Re: svn commit: r274394 - in head/usr.sbin: bsdconfig/timezone > tzsetup > > > On 11/11/14 11:37, Devin Teske wrote: > > Author: dteske > > Date: Tue Nov 11 19:37:17 2014 > > New Revision: 274394 > > URL: https://svnweb.freebsd.org/changeset/base/274394 > > > > Log: > > Default `bsdconfig timezone' and `tzsetup' to `-s' in a VM. > > > > Recommended by: cperciva > > Reviewed by: cperciva > > Relnotes: tzsetup and bsdconfig now assume that the "hardware" > > clock > inside a VM is set to UTC > > > > Modified: > > head/usr.sbin/bsdconfig/timezone/timezone > > head/usr.sbin/tzsetup/tzsetup.c > > > > Modified: head/usr.sbin/bsdconfig/timezone/timezone > > > ========================================================== > ==================== > > --- head/usr.sbin/bsdconfig/timezone/timezone Tue Nov 11 19:12:57 > 2014 (r274393) > > +++ head/usr.sbin/bsdconfig/timezone/timezone Tue Nov 11 19:37:17 > 2014 (r274394) > > @@ -62,7 +62,7 @@ _PATH_WALL_CMOS_CLOCK="/etc/wall_cmos_cl > > REALLYDOIT=1 > > REINSTALL= > > USEDIALOG=1 > > -SKIPUTC= > > +SKIPUTC= # See MAIN > > VERBOSE= > > TZ_OR_FAIL= > > CHROOTENV= > > @@ -119,6 +119,9 @@ dialog_menu_main() > > > > > ########################################################## > ## MAIN > > > > +# Skip initial question regarding UTC v. Wall-Clock time if run in VM > > +[ "$( sysctl -n kern.vm_guest 2> /dev/null )" = "none" ] || SKIPUTC=1 > > + > > # Incorporate rc-file if it exists > > [ -f "$HOME/.bsdconfigrc" ] && f_include "$HOME/.bsdconfigrc" > > > > > > Modified: head/usr.sbin/tzsetup/tzsetup.c > > > ========================================================== > ==================== > > --- head/usr.sbin/tzsetup/tzsetup.c Tue Nov 11 19:12:57 2014 > (r274393) > > +++ head/usr.sbin/tzsetup/tzsetup.c Tue Nov 11 19:37:17 2014 > (r274394) > > @@ -47,6 +47,7 @@ __FBSDID("$FreeBSD$"); > > #include <sys/param.h> > > #include <sys/queue.h> > > #include <sys/stat.h> > > +#include <sys/sysctl.h> > > > > #include <dialog.h> > > > > @@ -910,8 +911,16 @@ main(int argc, char **argv) > > { > > char title[64], prompt[128]; > > int c, fd, rv, skiputc; > > + char vm_guest[16] = ""; > > + size_t len = sizeof(vm_guest); > > > > skiputc = 0; > > + > > + /* Default skiputc to 1 for VM guests */ > > + if (sysctlbyname("kern.vm_guest", vm_guest, &len, NULL, 0) == 0 && > > + strcmp(vm_guest, "none") != 0) > > + skiputc = 1; > > + > > while ((c = getopt(argc, argv, "C:nrs")) != -1) { > > switch(c) { > > case 'C': > > > > You've mixed tabs and spaces here. Could you fix it?
Fixed. Thanks. -- Devin _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"