11.3 RC - Update available, to 11.2-U7?

Bungo

Dabbler
Joined
Jun 16, 2018
Messages
10
Installed fresh FreeNAS 11.3 RC on 2 machines that previously had 11.2-U5. Using fresh boot USB sticks (not upgraded over the old ones) but applied the config saved from 11.2 to 11.3 RC.

Release Train is:
FreeNAS-11.3-RC - Release Canidate Train for FreeNAS 11.3 [prerelease]

Updates and notification tells me there is an update available, but the datails are: 11.3 RC1 to 11.2-U7 ??

Upgradebase-os-11.3-RC1-44b29aa7ed88cc65e3b8f9ae8695e10b -> base-os-11.2-U7-f93a3b67973bac31ececa871460a45e7
Upgradefreebsd-pkgdb-11.3-RC1-44b29aa7ed88cc65e3b8f9ae8695e10b -> freebsd-pkgdb-11.2-U7-f93a3b67973bac31ececa871460a45e7
Upgradefreenas-pkg-tools-11.3-RC1-44b29aa7ed88cc65e3b8f9ae8695e10b -> freenas-pkg-tools-11.2-U7-f93a3b67973bac31ececa871460a45e7
UpgradeFreeNASUI-11.3-RC1-44b29aa7ed88cc65e3b8f9ae8695e10b -> FreeNASUI-11.2-U7-f93a3b67973bac31ececa871460a45e7

I doubt this is correct.

regards

Braedon
 

pader

Cadet
Joined
Feb 29, 2020
Messages
7
I found a way to fix this problem, in Shell:

Code:
sqlite3 /data/freenas-v1.db;
sqlite> select * from system_update;
1|1||11.2-U8


You'll see the upd_train field value is ‘11.2-U8’, compare with a pure installed freenas value is empty, so we set it to empty string, and then enter the select sql to check it, and enter .quit to exit the sqlite shell.

Code:
sqlite> update system_update set upd_train='';
sqlite> select * from system_update;
1|1|
sqlite> .quit


Now try to check update in Web UI, problem fixed.
 
Top