php: Initial version of module.
This commit is contained in:
parent
552ab38b52
commit
85522baabd
1 changed files with 44 additions and 0 deletions
44
php/manifests/init.pp
Normal file
44
php/manifests/init.pp
Normal file
|
@ -0,0 +1,44 @@
|
|||
|
||||
# Install PHP command-line interface
|
||||
#
|
||||
class php::cli {
|
||||
|
||||
package { "php-cli":
|
||||
ensure => installed,
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
# Install GD support to PHP
|
||||
#
|
||||
class php::gd {
|
||||
|
||||
package { "php-gd":
|
||||
ensure => installed,
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
# Install MySQL support to PHP
|
||||
#
|
||||
class php::mysql {
|
||||
|
||||
package { "php-mysql":
|
||||
ensure => installed,
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
# Install PDO database abstraction support to PHP
|
||||
#
|
||||
class php::pdo {
|
||||
|
||||
package { "php-pdo":
|
||||
ensure => installed,
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue