Make chown more generic.
authorElrond <elrond+mediagoblin.org@samba-tng.org>
Wed, 30 Jul 2014 17:51:23 +0000 (19:51 +0200)
committerElrond <elrond+mediagoblin.org@samba-tng.org>
Wed, 30 Jul 2014 17:51:23 +0000 (19:51 +0200)
Some distributions (ubuntu 14.04 maybe?) don't create a
group for a new user.  So change the "chown" to use the
primary group of the user instead of forcing the group.
This should do the right thing in more cases.

Old: chown mediagoblin:mediagoblin
New: chown mediagoblin:

docs/source/siteadmin/deploying.rst

index 3f4a59cd5ea9aa7e84666cb8b4eb6ce1e741b868..9dea239f65da2b3aa68ec39ce1cc89b6db928a3c 100644 (file)
@@ -165,11 +165,11 @@ to the unpriviledged system account.
 To do this, enter either of the following commands, changing the defaults
 to suit your particular requirements::
 
-  sudo mkdir -p /srv/mediagoblin.example.org && sudo chown -hR mediagoblin:mediagoblin /srv/mediagoblin.example.org
+  sudo mkdir -p /srv/mediagoblin.example.org && sudo chown -hR mediagoblin: /srv/mediagoblin.example.org
 
 or (as the root user)::
 
-  mkdir -p /srv/mediagoblin.example.org && chown -hR mediagoblin:mediagoblin /srv/mediagoblin.example.org
+  mkdir -p /srv/mediagoblin.example.org && chown -hR mediagoblin: /srv/mediagoblin.example.org
 
 
 Install MediaGoblin and Virtualenv