forked from mgifford/chef-phpmyadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.rb
More file actions
22 lines (18 loc) · 787 Bytes
/
metadata.rb
File metadata and controls
22 lines (18 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name "phpmyadmin"
maintainer "Sebastian Johnsson"
maintainer_email "sebastian@agiley.se"
license "Apache 2.0"
description "Installs and configures phpmyadmin"
version "0.1.0"
recipe "phpmyadmin", "Installs phpmyadmin-package and initalizes configuration and mysql-setup."
recipe "phpmyadmin::configuration", "Configures phpmyadmin"
recipe "phpmyadmin::mysql", "Creates the phpmyadmin-database and sets database permissions"
recipe "phpmyadmin::apache2", "Configures phpmyadmin to be used with apache2"
recipe "phpmyadmin::nginx", "Configures phpmyadmin to be used with nginx"
%w{ ubuntu debian centos redhat amazon scientific oracle fedora }.each do |os|
supports os
end
%w{ php }.each do |cb|
depends cb
end
# Add attributes later.