survey: fix markdown rendering of code blocks in numbered list authored by lelutin's avatar lelutin
the code blocks need to be indented 4 spaces relative to the column at
which the text starts for the numbered point in which it is placed, not
relative to the start of the line.
...@@ -51,7 +51,7 @@ The steps to upgrade LimeSurvey are: ...@@ -51,7 +51,7 @@ The steps to upgrade LimeSurvey are:
the version and checksum keys with above info the version and checksum keys with above info
4. Enable full maintenance mode 4. Enable full maintenance mode
sudo -u postgres psql -d limesurvey -c "UPDATE lime_settings_global SET stg_value='hard' WHERE stg_name='maintenancemode'" sudo -u postgres psql -d limesurvey -c "UPDATE lime_settings_global SET stg_value='hard' WHERE stg_name='maintenancemode'"
5. Run the puppet agent on `survey-01`: `puppet agent --enable && pat`: Puppet 5. Run the puppet agent on `survey-01`: `puppet agent --enable && pat`: Puppet
will unpack the new archive under `/srv/www/survey.torproject.org/${version}`, will unpack the new archive under `/srv/www/survey.torproject.org/${version}`,
...@@ -59,7 +59,7 @@ The steps to upgrade LimeSurvey are: ...@@ -59,7 +59,7 @@ The steps to upgrade LimeSurvey are:
7. Login to the [admin interface][] and validate the new version is running 7. Login to the [admin interface][] and validate the new version is running
8. Disable maintenance mode: 8. Disable maintenance mode:
sudo -u postgres psql -d limesurvey -c "UPDATE lime_settings_global SET stg_value='off' WHERE stg_name='maintenancemode'" sudo -u postgres psql -d limesurvey -c "UPDATE lime_settings_global SET stg_value='off' WHERE stg_name='maintenancemode'"
Because LimeSurvey does not make available previous release zip-files, the old Because LimeSurvey does not make available previous release zip-files, the old
code installation directory is kept on the server, along with previously code installation directory is kept on the server, along with previously
... ...
......