Clean up readability of installer
This commit is contained in:
parent
44018b2cbf
commit
c22f2cd5f0
9
README
9
README
|
@ -24,12 +24,6 @@ Major features:
|
|||
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:
|
||||
|
||||
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
|
||||
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
|
||||
|
||||
sudo ./install -fiapd
|
||||
|
@ -83,4 +77,3 @@ Forums and mailing lists: http://forum.sourcefabric.org
|
|||
Bug tracker: http://dev.sourcefabric.org
|
||||
Source code: http://github.com/sourcefabric/Airtime
|
||||
IRC chat: #airtime on Freenode
|
||||
|
||||
|
|
|
@ -39,6 +39,9 @@
|
|||
</div>
|
||||
<input class="form-control" type="hidden" name="dbErr" id="dbErr" aria-describedby="helpBlock"/>
|
||||
<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 ❱"/>
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
@ -6,10 +6,10 @@
|
|||
<span id="helpBlock" class="help-block help-message"></span>
|
||||
<p>
|
||||
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>
|
||||
<pre style="text-align: left">sudo service airtime-playout start
|
||||
sudo service airtime-liquidsoap start
|
||||
sudo service airtime-media-monitor start</pre>
|
||||
<p>
|
||||
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!
|
||||
|
|
9
install
9
install
|
@ -577,11 +577,12 @@ fi
|
|||
verbose "\n * Restarting apache..."
|
||||
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 " * Basic Setup DONE! * "
|
||||
echo " "
|
||||
echo " To get started with Airtime, visit localhost:5000 "
|
||||
echo " or, if you've set up your own web configuration, "
|
||||
echo " the Airtime webroot on your webserver "
|
||||
echo " in your web browser of choice "
|
||||
echo " To get started with Airtime, visit ${IP} "
|
||||
echo " or, if you've set up your own web configuration, "
|
||||
echo " the Airtime webroot on your webserver "
|
||||
echo "-----------------------------------------------------"
|
||||
|
|
Loading…
Reference in New Issue