Can we get one of you guys to install the RC9 release of FOG 1.5.0 to see if the issue has already been addressed? The process is this to update to an RC release.
If you don’t have the local install files, use git to pull them down using this process.
sudo -i
git clone https://github.com/FOGProject/fogproject.git /opt/fogproject
cd /opt/fogproject
git checkout dev-branch
cd bin
./installfog.sh
If you already have the git install files on your fog server then do this
sudo -i
cd <where_ever_your_install_files_are>
git checkout dev-branch
cd bin
./installfog.sh
Now when its time to switch to the stable branch once fog 1.5.0 stable has been released you will do this:
sudo -i
cd <where_ever_your_install_files_are>
git checkout master
cd bin
./installfog.sh
Telling git to checkout the dev-branch or master is the key to switching to an RC release.
I must warn you that upgrading to 1.5.0 is a one way street. If you upgrade you can't roll back to 1.4.4 because of the gui changes. So consider this well. 1.5.0 RC9 is stable and works well. You shouldn't have any concerns about updating.