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.
| 1234567891011121314151617 |
- #!/bin/bash
-
- ###### CONFIG
- ACCEPTED_HOSTS="/root/.hag_accepted.conf"
- BE_VERBOSE=false
-
- if [ "$UID" -ne 0 ]
- then
- echo "Superuser rights required"
- exit 2
- fi
-
- genApacheConf(){
- echo -e "# Host ${HOME_DIR}$1/$2 :"
- }
-
- echo '"quoted"' | tr -d \" > text.txt
|