Just upgraded to 1.2.0 and iPXE gives operation not permitted
-
At first I thought access rights seem ok. But luckily I didn’t trust my eyes and starting setting rights on my system just to make sure I didn’t miss something. And there it is…
[CODE]sudo ls -al /var/www/fog/service/ipxe
total 34188
drwx------ 2 fog www-data 4096 2015-03-26 11:54 .
…[/CODE]
The directory itself is not accessible by the webserver. AFAIK all those files and the directory should be owned by www-data and execution rights are not needed:
[CODE]sudo chown -R www-data /var/www/fog/service/ipxe
sudo chmod 755 /var/www/fog/service/ipxe
sudo chmod 644 /var/www/fog/service/ipxe/*[/CODE]
Boot up the client and see if things work! -
That worked!!!
Thanks you guys are great and now begins the process of exploring the features we are not using yet and convincing my bosses that we should be.
This is an awesome tool thanks for making it, updating it and helping those of us new to linux and FOG.
-
@sebastian-roth This fixed my issue as well…set permissions to 777 I’ll tighten here in a minute.