FreeBSD doesn't periodically recontextualize on vCenter
Periodic recontextualization check for #185 doesn't happen on FreeBSD, as the cronjob triggers the service one-context-reconfigure first with start action and fallbacks to onestart (required on FreeBSD) only if first one fails.
https://github.com/OpenNebula/addon-context-linux/blob/72b895dceab150019842b7b3820b1ce55d48d752/src/etc/cron.d/one-context-reconfigure%23%23crond#L6
Unfortunately, on FreeBSD the run with start doesn't exit as failure even if the service doesn't run.
Solution is to swap the order of calls, run first with onestart and if fails fallback to just common start.
Remove skip in tests when fixed: https://github.com/OpenNebula/development/blob/40f72c61ee248bd1451bf1c60491df9b9ee4f5ba/readiness/spec/context/linux/network.rb#L251