We spent two days installing this on all our cloud systems. The new features are great! I need to figure out how to automatically update!
2 Likes
If automatic updates are enabled (example: Sat 8-12), updates will happen automatically.
If automatic updates are disabled, a simple cron would work. (working on this for our systems but haven’t deployed it yet.)
Edit: For those interested… If automatic updates are disabled here is a simple cron that will run every Saturday at 10am and log output to /root/dpviz.log
Modify as needed.
As root user: crontab -e
0 10 * * 6 fwconsole ma upgrade dpviz >> /root/dpviz.log 2>&1
Got it Thanks magden!
1 Like