This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ######################### | |
| # install binary stuffs # | |
| ######################### | |
| apt-get install apache2 apache2-prefork-dev libaprutil1-dbd-mysql unzip mysql-server | |
| mkdir -p /usr/local/src/mod_vhost_dbd | |
| cd /usr/local/src/mod_vhost_dbd | |
| wget http://dbd-modules.googlecode.com/files/dbd-modules-1.0.6.zip | |
| unzip dbd-modules-1.0.6.zip | |
| apxs2 -c mod_vhost_dbd.c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| INSTALL_ROOT=${INSTALL_ROOT:-/opt/subdue} | |
| INSTALL_USER=${INSTALL_USER:-subdue} | |
| INSTALL_GROUP=${INSTALL_GROUP:-${INSTALL_USER}} | |
| AUTO_LOG=${AUTO_LOG:-/var/log/autoconfigamajigger.log} | |
| if [ -z "${MAJIG_URL}" ]; | |
| then | |
| echo "Please define MAJIG_URL before running" |