Problem after update - no configuration - bug in pfsense-utils.inc
-
In snapshoot pfSense-Full-Update-2.0-ALPHA-ALPHA-20090711-2100.tgz there is a bug in /etc/inc/pfsense-utils.inc line 1709 wich prevents correct initialisation after update/reboot
function get_freebsd_version() {
$version =/usr/bin/uname -r | cut -d'.' -f1
}there is misssing ; on line end $version =
/usr/bin/uname -r | cut -d'.' -f1
correct: $version =
/usr/bin/uname -r | cut -d'.' -f1
;After changing that pfS is operationala again.
By
Sasa