Hello dear - i am trying to write simple ansible playbook, but i stuck.
For example i have one routerboard with ROS 7.12. When i execute call to REST API:
curl -k -u admin:admin -X GET http://192.168.0.1/rest/system/package/update | jq .
{
"channel": "stable",
"installed-version": "7.12"
}
If i log via winbox - /system/packages/check-for-updates and then execute same call to REST API - i see different result:
{
"channel": "stable",
"installed-version": "7.12",
"latest-version": "7.14.2",
"status": "New version is available"
}
Is it normal behavior? I have checked it on different boards with and CHR with stable ROS 7.9<--->7.14.2 - same problem.
Any ideas and suggetions?
P.S. just checked another board:
{
"channel": "stable",
"installed-version": "7.12",
"latest-version": "7.13.4",
"status": "New version is available"
}
Why not 7.14.2? I am confused.