Complete path to rm

This commit is contained in:
Scott Ullrich 2009-06-18 20:27:10 -04:00
parent c37044f556
commit 89f49b8fc5

View File

@ -22,6 +22,6 @@
$files_to_process = split("\n", file_get_contents("/etc/pfSense.obsoletedfiles"));
foreach($files_to_process as $filename)
if(file_exists($filename))
exec("rm $filename");
exec("/bin/rm $filename");
?>