[2/2] urlfilter: Fix syntax when calling chown
Commit Message
Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
---
config/urlfilter/autoupdate.pl | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
@@ -119,12 +119,12 @@ unless ($blacklist_url eq '')
&cleanupdbdir();
system("cp -r $target/blacklists/* $dbdir");
- system("chown -R nobody.nobody $dbdir");
+ system("chown -R nobody:nobody $dbdir");
&setpermissions ($dbdir);
system("touch $updflagfile");
- system("chown nobody.nobody $updflagfile");
+ system("chown nobody:nobody $updflagfile");
system("/etc/init.d/squid restart");