Solved pkg info does not see installed package

Hello,
I am slightly new to BSD. I have a jail running in a FreeNAS installation. It has a FAMP stack plus phpmyadmin installed and everything including phpmyadmin works fine at the front-end. But when I SSH into the jail and try to check info on the phpmyadmin package the system does not want to show info. What am I doing wrong? pkg info nano and pkg info php73 works as expected

Code:
root@webdev:~  # cat .history | grep phpmyadmin
pkg install phpmyadmin-php73

root@webdev:~  # pkg install phpmyadmin-php73
Updating FreeBSD repository catalogue...
[webdev] Fetching meta.txz: 100%    944 B   0.9kB/s    00:01 
[webdev] Fetching packagesite.txz: 100%    6 MiB   3.3MB/s    00:02 
Processing entries: 100%
FreeBSD repository update completed. 31643 packages processed.
All repositories are up to date.
Checking integrity... done (0 conflicting)
The most recent versions of packages are already installed

root@webdev:~  # pkg info phpmyadmin-php73
pkg: No package(s) matching phpmyadmin-php73
 
Naming convention is exactly the other way around; php${ver}-${application}.

Not in this case, I think (could be a Freenas particularity though). But re-checking package names I realize that the phpmyadmin packages have some caps. Trying pkg info phpMyAdmin-php73 works as expected. Curious though that pkg install is fine with pkg install phpmyadmin-php73 but pkg info requires proper casing as in pkg info phpMyAdmin-php73.

Code:
root@webdev:~  # pkg search phpmyadmin
phpMyAdmin-php72-4.9.4         Set of PHP-scripts to manage MySQL over the web
phpMyAdmin-php73-4.9.4         Set of PHP-scripts to manage MySQL over the web
phpMyAdmin-php74-4.9.4         Set of PHP-scripts to manage MySQL over the web
phpMyAdmin5-php72-5.0.1        Set of PHP-scripts to manage MySQL over the web
phpMyAdmin5-php73-5.0.1        Set of PHP-scripts to manage MySQL over the web
phpMyAdmin5-php74-5.0.1        Set of PHP-scripts to manage MySQL over the web
 
Back
Top