diff options
-rwxr-xr-x | bin/reproducible_freebsd.sh | 3 | ||||
-rw-r--r-- | hosts/freebsd-jenkins/usr/local/etc/sudoers | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/bin/reproducible_freebsd.sh b/bin/reproducible_freebsd.sh index ed42686e..dcd48a92 100755 --- a/bin/reproducible_freebsd.sh +++ b/bin/reproducible_freebsd.sh @@ -142,7 +142,8 @@ for FREEBSD_TARGET in ${FREEBSD_TARGETS} ;do fi # set time forward 398 days and some - $RSSH "sudo service ntpd stop ; sudo date --set='+398 days +6 hours +23 minutes' ; date" + FUTURE_DATE=$(expr $(date +%s) + 34410180) + $RSSH "sudo service ntpd stop ; sudo date -f %s $FUTURE_DATE ; date" echo "$(date -u) - system is running in the future now." echo "=============================================================================" diff --git a/hosts/freebsd-jenkins/usr/local/etc/sudoers b/hosts/freebsd-jenkins/usr/local/etc/sudoers index fbff205f..a0bd35e1 100644 --- a/hosts/freebsd-jenkins/usr/local/etc/sudoers +++ b/hosts/freebsd-jenkins/usr/local/etc/sudoers @@ -110,7 +110,7 @@ jenkins ALL= NOPASSWD: /usr/bin/make -j ? buildworld, \ /usr/sbin/service ntpd stop, \ /usr/sbin/service ntpd status, \ /usr/sbin/ntpdate -b pool.ntp.org, \ - /bin/date --set=* + /bin/date -f %s * ## Uncomment to allow any user to run sudo if they know the password |