Clean up readability of installer

This commit is contained in:
Duncan Sommerville 2015-01-16 17:20:50 -05:00
parent 44018b2cbf
commit c22f2cd5f0
4 changed files with 12 additions and 15 deletions

9
README
View File

@ -24,12 +24,6 @@ Major features:
INSTALLATION INSTALLATION
------------ ------------
Please see this chapter to begin a typical installation:
http://sourcefabric.booktype.pro/airtime-25-for-broadcasters/preparing-the-server/
If you are a developer, please see this page:
http://wiki.sourcefabric.org/display/CC/Airtime+Dev+Site
Basic installation has two steps: Basic installation has two steps:
1) Run the install script, located in the Airtime root directory. 1) Run the install script, located in the Airtime root directory.
@ -41,7 +35,7 @@ For an interactive installation, run:
The installer will then prompt you about how you want to set up your Airtime The installer will then prompt you about how you want to set up your Airtime
installation. installation.
For a simple full installation (do this if you're installing Airtime from For a non-interactive full installation (do this if you're installing Airtime from
scratch and don't have any of your own configuration set up), run scratch and don't have any of your own configuration set up), run
sudo ./install -fiapd sudo ./install -fiapd
@ -83,4 +77,3 @@ Forums and mailing lists: http://forum.sourcefabric.org
Bug tracker: http://dev.sourcefabric.org Bug tracker: http://dev.sourcefabric.org
Source code: http://github.com/sourcefabric/Airtime Source code: http://github.com/sourcefabric/Airtime
IRC chat: #airtime on Freenode IRC chat: #airtime on Freenode

View File

@ -39,6 +39,9 @@
</div> </div>
<input class="form-control" type="hidden" name="dbErr" id="dbErr" aria-describedby="helpBlock"/> <input class="form-control" type="hidden" name="dbErr" id="dbErr" aria-describedby="helpBlock"/>
<div> <div>
<p style="text-align:right">
This may take up to 30 seconds to complete!
</p>
<input type="submit" formtarget="dbSettingsForm" class="btn btn-primary btn-next" value="Next &#10097;"/> <input type="submit" formtarget="dbSettingsForm" class="btn btn-primary btn-next" value="Next &#10097;"/>
</div> </div>
</form> </form>

View File

@ -6,10 +6,10 @@
<span id="helpBlock" class="help-block help-message"></span> <span id="helpBlock" class="help-block help-message"></span>
<p> <p>
Looks like you're almost done! As a final step, run the following commands from the terminal: Looks like you're almost done! As a final step, run the following commands from the terminal:
<br/><code>sudo service airtime-playout start</code>
<br/><code>sudo service airtime-liquidsoap start</code>
<br/><code>sudo service airtime-media-monitor start</code>
</p> </p>
<pre style="text-align: left">sudo service airtime-playout start
sudo service airtime-liquidsoap start
sudo service airtime-media-monitor start</pre>
<p> <p>
Click "Done!" to bring up the Airtime configuration checklist; if your configuration is all green, Click "Done!" to bring up the Airtime configuration checklist; if your configuration is all green,
you're ready to get started with your personal Airtime station! you're ready to get started with your personal Airtime station!

View File

@ -577,11 +577,12 @@ fi
verbose "\n * Restarting apache..." verbose "\n * Restarting apache..."
loudCmd "service apache2 restart 2>/dev/null" loudCmd "service apache2 restart 2>/dev/null"
IP=$(ifconfig eth0 2>/dev/null|awk '/inet addr:/ {print $2}'|sed 's/addr://')
echo -e "\n-----------------------------------------------------" echo -e "\n-----------------------------------------------------"
echo " * Basic Setup DONE! * " echo " * Basic Setup DONE! * "
echo " " echo " "
echo " To get started with Airtime, visit localhost:5000 " echo " To get started with Airtime, visit ${IP} "
echo " or, if you've set up your own web configuration, " echo " or, if you've set up your own web configuration, "
echo " the Airtime webroot on your webserver " echo " the Airtime webroot on your webserver "
echo " in your web browser of choice "
echo "-----------------------------------------------------" echo "-----------------------------------------------------"