Re: iked(8): get rid of IPv6 flow and -6 flag?

2020-01-13 Thread Andrew Klaus
We use the -6 option and I agree with deprecating it for one OpenBSD release instead. Especially now with sysupgrade(8), after upgrading our remote servers, our site-to-site VPN wouldn't come back up after upgrade. On Mon, Jan 13, 2020 at 12:58 PM Klemens Nanni wrote: > On Mon, Jan 13, 2020 at

Re: sysupgrade(8): Adding ability to check if new release available

2019-06-01 Thread Andrew Klaus
t snapshot." + if ! $CRON; then + echo "Already on latest snapshot." + fi exit 0 +elif $CRON; then + echo "New snapshot available." +exit 0 fi # INSTALL.*, bsd*, *.tgz On 2019-06-01 1:47 a.m., Andrew Klaus wrote: This adds the

sysupgrade(8): Adding ability to check if new release available

2019-06-01 Thread Andrew Klaus
This adds the ability to check if you're running the latest release, without actually upgrading. I'd like to use this functionality when writing an Ansible module for sysupgrade soon. I already have one for syspatch that's been accepted today. This follows the same usage (-l) as syspatch(8) to