diff --git a/manifests/init.pp b/manifests/init.pp
index 2b1a79ba70fe820856405c6ae7d916a9d8fc25ef..e0c0d8a5c3b44a5bd00453ca33f317b8fcc1260f 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -52,6 +52,7 @@ class skadereg {
   }
 
   include skadereg::firewall
+  include ::yum::centos_scl
   include ::apache
 
   class { '::apache::mod::php':
@@ -65,8 +66,6 @@ class skadereg {
      'php55-php-common': ensure => installed;
    } 
 
-
-
   file { '/etc/httpd/modules/libphp5.so':
     ensure => link,
     target => '/opt/rh/httpd24/root/usr/lib64/httpd/modules/libphp55-php5.so',
@@ -122,13 +121,18 @@ class skadereg {
     user => 'andal699'    
   }
 
-  include ::yum::centos_scl
-
-  file { '/tmp/example':
-    ensure  => file,
-    content => template('skadereg/example.erb'),
-    owner   => andal699,
-    group   => andal699,
-    mode    => '0400',
+  class { '::mysql::server':
+    root_password    => 'ControlAvHandboll',
+    databases        => {
+      'homestead' => {
+        ensure  => present,
+        charset => 'utf8',
+      }
+    },
+    override_options => {
+      mysqld => {
+        port => 33060
+      }
+    }
   }
 }