Skip to content

Commit f664042

Browse files
author
Florian Schaal
committed
fixed permissions for bind-slave. (Dr. Ralf Schlatterbeck - Open Source Consulting)
1 parent 6f8a85a commit f664042

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

install/lib/installer_base.lib.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1481,12 +1481,12 @@ public function configure_bind() {
14811481

14821482
//* Create the slave subdirectory
14831483
$content .= 'slave';
1484-
if(!@is_dir($content)) mkdir($content, 2770, true);
1484+
if(!@is_dir($content)) mkdir($content, 02770, true);
14851485

14861486
//* Chown the slave subdirectory to $conf['bind']['bind_user']
14871487
chown($content, $conf['bind']['bind_user']);
14881488
chgrp($content, $conf['bind']['bind_group']);
1489-
chmod($content, 2770);
1489+
chmod($content, 02770);
14901490

14911491
}
14921492

@@ -2822,4 +2822,4 @@ protected function insert_db_credentials($tContents) {
28222822

28232823
}
28242824

2825-
?>
2825+
?>

0 commit comments

Comments
 (0)