aboutsummaryrefslogtreecommitdiff
path: root/manifests/examples/symfony.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/examples/symfony.pp')
-rw-r--r--manifests/examples/symfony.pp28
1 files changed, 0 insertions, 28 deletions
diff --git a/manifests/examples/symfony.pp b/manifests/examples/symfony.pp
deleted file mode 100644
index 2829b98..0000000
--- a/manifests/examples/symfony.pp
+++ /dev/null
@@ -1,28 +0,0 @@
-# Main class
-# TODO: http://symfony.com/doc/current/book/installation.html
-#
-# After provisioning, you'll probably just want to access http://localhost:PORT/config.php
-# After configuration, start navigating at http://localhost:PORT/app_dev.php/
-class symfony {
- include php
- include database
- include nodo::utils::web
- include websites
-
- # Symfony requirement
- file { '/etc/php5/conf.d/timezone.ini':
- ensure => present,
- owner => root,
- group => root,
- mode => 0644,
- content => "date.timezone = America/Sao_Paulo\n",
- notify => Service['apache'],
- }
-}
-
-#
-# Class instantiations
-#
-class { 'symfony':
- stage => main,
-}