Update check_pf_version

minor code cleanup and added comments
This commit is contained in:
Dallas 2019-10-17 08:41:48 -05:00 committed by GitHub
parent 1b094f3c47
commit b4f9d77bd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,13 @@
#!/usr/local/bin/php -f
<?
# This check pulls the version from the website and compares it
# to the installed version.
# Many thanks to Atadilo for fixing the code and simplifying it.
# Created 15 Dec 2017
# Modified 17 Oct 2019
require_once("pkg-utils.inc");
$system_pkg_version = get_system_pkg_version();
@ -17,3 +24,5 @@ $additional_info .= "Remote version: ".$system_pkg_version['version']."\n";
echo $additional_info;
exit ($exitcode);
?>