Merge pull request #211 from nextcloud/stable9-backport-209

[stable9] add missing /
This commit is contained in:
Morris Jobke 2016-10-17 09:15:44 +02:00 committed by GitHub
commit d194c83624

View File

@ -157,8 +157,8 @@ replace the ``htuser`` and ``htgroup`` variables with your HTTP user and group::
mkdir -p $ncpath/updater
printf "chmod Files and Directories\n"
find ${ncpath} -type f -print0 | xargs -0 chmod 0640
find ${ncpath} -type d -print0 | xargs -0 chmod 0750
find ${ncpath}/ -type f -print0 | xargs -0 chmod 0640
find ${ncpath}/ -type d -print0 | xargs -0 chmod 0750
printf "chown Directories\n"
chown -R ${rootuser}:${htgroup} ${ncpath}