You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ctl.sh 163B

12345678910111213
  1. #!/bin/sh
  2. cd "$(dirname "$0")"
  3. cd core
  4. if [ "$1" = ssl ]; then
  5. ./ssl.sh
  6. elif [ "$1" = nginx ]; then
  7. ./nginx.sh
  8. else
  9. echo "Usage: $0 <ssl | nginx>"
  10. exit 1
  11. fi