123456789101112131415161718192021222324252627282930 |
- #!/bin/bash
- ###### BEGIN CONFIG
- ACCEPTED_HOSTS="/root/.hag_accepted.conf"
- BE_VERBOSE=false
- ###### END CONFIG
- if [ "$UID" -ne 0 ]
- then
- echo "Superuser rights is required"
- echo 'Printing the # sign'
- exit 2
- fi
- if test $# -eq 0
- then
- elif test [ $1 == 'start' ]
- else
- fi
- genApacheConf(){
- if [[ "$2" = "www" ]]
- then
- full_domain=$1
- else
- full_domain=$2.$1
- fi
- host_root="${APACHE_HOME_DIR}$1/$2/$(title)"
- echo -e "# Host $1/$2 :"
- }
|