source: locker/bin/scripts-start @ 153

Last change on this file since 153 was 127, checked in by jbarnold, 17 years ago
old copies of locker software
  • Property svn:executable set to *
File size: 1.1 KB
Line 
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
13echo 8. Advanced Poll
14echo 9. PHP iCalendar
15echo
16printf "Please enter a number 1-9: "
17read num
18echo
19
20attach scripts 2>/dev/null
21if [ "$num" -eq 1 ]; then
22  . /mit/scripts/bin$scriptsdev/scripts-mediawiki
23elif [ "$num" -eq 2 ]; then
24  . /mit/scripts/bin$scriptsdev/scripts-wordpress
25elif [ "$num" -eq 3 ]; then
26  . /mit/scripts/bin$scriptsdev/scripts-joomla
27elif [ "$num" -eq 4 ]; then
28  . /mit/scripts/bin$scriptsdev/scripts-e107
29elif [ "$num" -eq 5 ]; then
30  . /mit/scripts/bin$scriptsdev/scripts-gallery2
31elif [ "$num" -eq 6 ]; then
32  . /mit/scripts/bin$scriptsdev/scripts-phpbb
33elif [ "$num" -eq 7 ]; then
34  . /mit/scripts/bin$scriptsdev/scripts-advancedbook
35elif [ "$num" -eq 8 ]; then
36  . /mit/scripts/bin$scriptsdev/scripts-advancedpoll
37elif [ "$num" -eq 9 ]; then
38  . /mit/scripts/bin$scriptsdev/scripts-phpical
39else
40  echo ERROR:
41  echo You must enter a number 1 through 9.
42  exit 1
43fi
Note: See TracBrowser for help on using the repository browser.