Upgrading from a rolling release dating back to mid august to 1.2.0-rc results in:
```
[ interfaces openvpn vtun20 ip ospf dead-interval 40 ]
% interface vtun20 not in default vrf
[[interfaces openvpn vtun20]] failed
[ interfaces openvpn vtun30 ip ospf dead-interval 40 ]
% interface vtun30 not in default vrf
[[interfaces openvpn vtun30]] failed
Commit failed
```
This is actually related to the `ip ospf` section in the following configuration:
```
openvpn vtun20 {
ip {
ospf {
dead-interval 40
hello-interval 10
network point-to-point
priority 2
retransmit-interval 5
transmit-delay 1
}
}
local-address 172.16.253.118 {
}
local-host x.x.234.19
local-port 8020
mode site-to-site
openvpn-option --persist-tun
openvpn-option --persist-key
openvpn-option "--tun-mtu 1500"
openvpn-option "--mssfix 1320"
protocol udp
remote-address 172.16.253.117
remote-host x.x.69.205
remote-port 8020
shared-secret-key-file /config/auth/foo.psk
}
```