diff options
author | rinpatch <rinpatch@sdf.org> | 2019-06-21 06:39:03 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-06-21 06:39:03 +0300 |
commit | 4bec121798218f8abf8d2915fa7c26ccb23a4f4a (patch) | |
tree | d58dd794777eac0623c5201bc12ebe1880f10b52 /docs/installation | |
parent | e824025c52bec84a44bc4307407071daa99e805f (diff) | |
download | pleroma-4bec121798218f8abf8d2915fa7c26ccb23a4f4a.tar.gz |
Do not set ownership group in chown commands
Diffstat (limited to 'docs/installation')
-rw-r--r-- | docs/installation/releases_en.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/installation/releases_en.md b/docs/installation/releases_en.md index e1a2e97e6..9fbb4b26e 100644 --- a/docs/installation/releases_en.md +++ b/docs/installation/releases_en.md @@ -92,16 +92,16 @@ rm /tmp/pleroma.zip # Note: It does not have to be `/var/lib/pleroma/uploads`, the config generator will ask about the upload directory later mkdir -p /var/lib/pleroma/uploads -chown -R pleroma:pleroma /var/lib/pleroma +chown -R pleroma /var/lib/pleroma # Create custom public files directory (custom emojis, frontend bundle overrides, robots.txt, etc.) # Note: It does not have to be `/var/lib/pleroma/static`, the config generator will ask about the custom public files directory later mkdir -p /var/lib/pleroma/static -chown -R pleroma:pleroma /var/lib/pleroma +chown -R pleroma /var/lib/pleroma # Create a config directory mkdir -p /etc/pleroma -chown -R pleroma:pleroma /etc/pleroma +chown -R pleroma /etc/pleroma # Run the config generator su pleroma -s $SHELL -lc "./bin/pleroma_ctl instance gen --output /etc/pleroma/config.exs --output-psql /tmp/setup_db.psql" |