diff options
author | Jim Campbell <jcampbell@gnome.org> | 2015-05-11 20:15:08 -0500 |
---|---|---|
committer | Jim Campbell <jcampbell@gnome.org> | 2015-05-11 20:15:08 -0500 |
commit | 7bba6d2e9c99ad4ee7b5966c297242d1adaaa9cb (patch) | |
tree | a7df8bf1548b651c21c015d8fca942238e20e3e1 /docs/source/siteadmin/deploying.rst | |
parent | ec255f63be8eeca90a7e9b0b8616f887ae4405d1 (diff) | |
download | mediagoblin-7bba6d2e9c99ad4ee7b5966c297242d1adaaa9cb.tar.lz mediagoblin-7bba6d2e9c99ad4ee7b5966c297242d1adaaa9cb.tar.xz mediagoblin-7bba6d2e9c99ad4ee7b5966c297242d1adaaa9cb.zip |
docs: Removed chkconfig cmd. Made 'exit' more explicit.
The chkconfig command is only needed on CentOS 6, which isn't really
a supported multimedia platform. CentOS 7 and Fedora 21+
wouldn't require this command.
Also made the "exit" command (used after setting up the postgres
mediagoblin account and database) more explicit. This will help prevent
user errors for users who may skim through the documentation.
Diffstat (limited to 'docs/source/siteadmin/deploying.rst')
-rw-r--r-- | docs/source/siteadmin/deploying.rst | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/docs/source/siteadmin/deploying.rst b/docs/source/siteadmin/deploying.rst index c2a0da39..b88ede8b 100644 --- a/docs/source/siteadmin/deploying.rst +++ b/docs/source/siteadmin/deploying.rst @@ -130,15 +130,12 @@ Then we'll create the database where all of our MediaGoblin data will be stored: where the first ``mediagoblin`` is the database owner and the second ``mediagoblin`` is the database name. -Type ``exit`` to exit from the 'postgres' user account. +Type ``exit`` to exit from the 'postgres' user account.:: -From here we just need to set the Postgres database to start on boot, and also -start it up for this particular session. If you're on a platform that does not -use *systemd*, you can enter:: - - sudo chkconfig postgresql on && service postgresql start + exit -Whereas users of *systemd*-based systems will need to enter:: +From here we just need to set the Postgres database to start on boot, and also +start it up for this particular session.:: sudo systemctl enable postgresql && systemctl start postgresql |