Rev 5307 Failed to find snapin file
-
Rev 5307
I wanted to test new client version (0.9.6), and snapins did’nt work.
In log file I could see:
Failed to find snapin fileWith a colleague help, we found the problem: snapin file was searched with path /opt/fog
And snapins are in /opt/fog/snapinsIn Global configuration, I have /opt/fog/snapins/ for FOG_SNAPDIR (with the trailing slash)
But in Storage configuration, for each node I have /opt/fog/snapins (without trailing slash)
And in lib/client/SnapinClient.class.php line 36 you use dirname
Dirname without trailing slash extract only the first part (/opt/fog/)And in commons/schema.php, line 1642, value is forced to /opt/fog/snapins (without trailing slash)
In Storage configuration, if I add trailing slash, it dissapear after validation. -
I’ve removed the dirname function from the stuff, if you can update and let me know if things are good?
-
@Tom-Elliott said:
I’ve removed the dirname function from the stuff, if you can update and let me know if things are good?
Yes it’s ok now
Thank you