source: locker/bin/scripts-start @ 203

Last change on this file since 203 was 154, checked in by jbarnold, 17 years ago
removing advertisements for advancedpoll
  • Property svn:executable set to *
File size: 992 bytes
RevLine 
[127]1#!/bin/sh
2
3echo
4echo "What piece of software would you like to install?"
5echo
6echo 1. MediaWiki
7echo 2. WordPress
8echo 3. Joomla
9echo 4. e107
10echo 5. Gallery2
11echo 6. phpBB
12echo 7. Advanced Guest Book
[154]13echo 8. PHP iCalendar
[127]14echo
[154]15printf "Please enter a number 1-8: "
[127]16read num
17echo
18
19attach scripts 2>/dev/null
20if [ "$num" -eq 1 ]; then
21  . /mit/scripts/bin$scriptsdev/scripts-mediawiki
22elif [ "$num" -eq 2 ]; then
23  . /mit/scripts/bin$scriptsdev/scripts-wordpress
24elif [ "$num" -eq 3 ]; then
25  . /mit/scripts/bin$scriptsdev/scripts-joomla
26elif [ "$num" -eq 4 ]; then
27  . /mit/scripts/bin$scriptsdev/scripts-e107
28elif [ "$num" -eq 5 ]; then
29  . /mit/scripts/bin$scriptsdev/scripts-gallery2
30elif [ "$num" -eq 6 ]; then
31  . /mit/scripts/bin$scriptsdev/scripts-phpbb
32elif [ "$num" -eq 7 ]; then
33  . /mit/scripts/bin$scriptsdev/scripts-advancedbook
34elif [ "$num" -eq 8 ]; then
35  . /mit/scripts/bin$scriptsdev/scripts-phpical
36else
37  echo ERROR:
[154]38  echo You must enter a number 1 through 8.
[127]39  exit 1
40fi
Note: See TracBrowser for help on using the repository browser.