source: locker/bin/scripts-start @ 460

Last change on this file since 460 was 458, checked in by andersk, 16 years ago
Things that give me nightmares, volume 458.
  • Property svn:executable set to *
File size: 1012 bytes
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. PHP iCalendar"
14echo
15printf "Please enter a number 1-8: "
16read num
17echo
18
19attach scripts 2>/dev/null
20if [ "$num" = 1 ]; then
21  . "/mit/scripts/bin$scriptsdev/scripts-mediawiki"
22elif [ "$num" = 2 ]; then
23  . "/mit/scripts/bin$scriptsdev/scripts-wordpress"
24elif [ "$num" = 3 ]; then
25  . "/mit/scripts/bin$scriptsdev/scripts-joomla"
26elif [ "$num" = 4 ]; then
27  . "/mit/scripts/bin$scriptsdev/scripts-e107"
28elif [ "$num" = 5 ]; then
29  . "/mit/scripts/bin$scriptsdev/scripts-gallery2"
30elif [ "$num" = 6 ]; then
31  . "/mit/scripts/bin$scriptsdev/scripts-phpbb"
32elif [ "$num" = 7 ]; then
33  . "/mit/scripts/bin$scriptsdev/scripts-advancedbook"
34elif [ "$num" = 8 ]; then
35  . "/mit/scripts/bin$scriptsdev/scripts-phpical"
36else
37  echo "ERROR:"
38  echo "You must enter a number 1 through 8."
39  exit 1
40fi
Note: See TracBrowser for help on using the repository browser.