diff --git a/README.md b/README.md index 4408d63..22af179 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ steps for setting it up on Ubuntu and immediately configuring it to use localhost as the target server, the simplest configuration option: sudo aptitude -y install git python-jinja2 python-yaml python-paramiko python-software-properties - add-apt-repository ppa:rquillo/ansible/ubuntu + add-apt-repository ppa:rquillo/ansible aptitude update aptitude install ansible echo "localhost" > /etc/ansible/hosts @@ -83,4 +83,4 @@ Conventions used in playbooks __vars/settings-default.yml__ file will give you a complete overview of all the configuration that is modified from the server package default. -[1]: http://ansible.github.com/ "Ansible" \ No newline at end of file +[1]: http://ansible.github.com/ "Ansible" diff --git a/ubuntu-10.04-lamp-dev/README.md b/ubuntu-10.04-lamp-dev/README.md index 2d0eed0..08211b2 100644 --- a/ubuntu-10.04-lamp-dev/README.md +++ b/ubuntu-10.04-lamp-dev/README.md @@ -1,8 +1,7 @@ Ubuntu 10.04 LAMP Dev Server --------------------------- -This server is configured with standard LAMP for a single docroot. APC is not -installed, rather eAccellerator is built. Docroot is at /var/dev. +This server is configured with standard LAMP for a single docroot. It was used for a client that we no longer work with, who had a production server running Ubuntu 10.04. This playbook is no longer maintained. Docroot is at /var/dev. Use `./run-local-all` to run all the tags, otherwise directly run the parts you need using: @@ -16,7 +15,5 @@ Other optional tags: +--------------------------------------------------------------+ | drush | Drupal shell. | +--------------------------------------------------------------+ - | eaccel | eAccelerator | - +--------------------------------------------------------------+ | memcached | Memcached daemon and memcache PECL extension | +--------------------------------------------------------------+ diff --git a/ubuntu-10.04-lamp-dev/files/etc-sysctl-d-65-shm-size-conf b/ubuntu-10.04-lamp-dev/files/etc-sysctl-d-65-shm-size-conf deleted file mode 100644 index 975a9b8..0000000 --- a/ubuntu-10.04-lamp-dev/files/etc-sysctl-d-65-shm-size-conf +++ /dev/null @@ -1 +0,0 @@ -kernel.shmmax = 260000000 diff --git a/ubuntu-10.04-lamp-dev/templates/etc-php5-conf-d-eaccelerator-ini.j2 b/ubuntu-10.04-lamp-dev/templates/etc-php5-conf-d-eaccelerator-ini.j2 deleted file mode 100644 index 0aa4335..0000000 --- a/ubuntu-10.04-lamp-dev/templates/etc-php5-conf-d-eaccelerator-ini.j2 +++ /dev/null @@ -1,17 +0,0 @@ -; eAccelerator configuration -extension = "/usr/lib/php5/20090626/eaccelerator.so" -eaccelerator.shm_size = "{{ eaccel_shm_size }}" -eaccelerator.cache_dir = "/var/cache/eaccelerator" -eaccelerator.log_file = "/var/log/eaccelerator.log" -eaccelerator.enable = "1" -eaccelerator.optimizer = "1" -eaccelerator.check_mtime = "1" -eaccelerator.debug = "0" -eaccelerator.filter = "" -eaccelerator.shm_max = "0" -eaccelerator.shm_ttl = "30" -eaccelerator.shm_prune_period = "0" -eaccelerator.shm_only = "0" -eaccelerator.compress = "1" -eaccelerator.compress_level = "9" -eaccelerator.allowed_admin_path = "/var/www"