Solved pkg upgrade strange behavior

Hi,

I discovered strange behavior of 'pkg upgrade' :
pkg upgrade shows that there is one candidate for upgrade, but then nothing happens. What would that mean ? Is this behavior normal ? Should I be worried about this?

Bash:
[lanin@freebsd3 ~]$ freebsd-version -urk
14.0-RELEASE-p2
14.0-RELEASE-p2
14.0-RELEASE-p2
[lanin@freebsd3 ~]$ sudo freebsd-update fetch
Looking up update.FreeBSD.org mirrors... 3 mirrors found.
Fetching metadata signature for 14.0-RELEASE from update1.freebsd.org... done.
Fetching metadata index... done.
Inspecting system... done.
Preparing to download files... done.

No updates needed to update system to 14.0-RELEASE-p2.
[lanin@freebsd3 ~]$ 
[lanin@freebsd3 ~]$ sudo pkg update
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
[lanin@freebsd3 ~]$ 
[lanin@freebsd3 ~]$ sudo pkg upgrade
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking for upgrades (1 candidates): 100%
Processing candidates (1 candidates): 100%
Checking integrity... done (0 conflicting)
Your packages are up to date.
[lanin@freebsd3 ~]$
 
Sorry, wrong place for my question.

And I found this

Please, move my question to right place.
 
here is the solution (post 34) :


Bash:
[lanin@freebsd3 ~]$ sudo pkg install -f pkg
Password:
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
The following 1 package(s) will be affected (of 0 checked):

Installed packages to be REINSTALLED:
    pkg-1.20.8

Number of packages to be reinstalled: 1

11 MiB to be downloaded.

Proceed with this action? [y/N]: y
[1/1] Fetching pkg-1.20.8.pkg: 100%   11 MiB   2.8MB/s    00:04   
Checking integrity... done (0 conflicting)
[1/1] Reinstalling pkg-1.20.8...
[1/1] Extracting pkg-1.20.8: 100%
[lanin@freebsd3 ~]$ sudo pkg upgrade
Updating FreeBSD repository catalogue...
FreeBSD repository is up to date.
All repositories are up to date.
Checking for upgrades (0 candidates): 100%
Processing candidates (0 candidates): 100%
Checking integrity... done (0 conflicting)
Your packages are up to date.
[lanin@freebsd3 ~]$
 
Back
Top