Forge Home

wordpress

Installs and manages WordPress, including setup, generation of salts, and initial setup of a GIT repository

7,551 downloads

7,551 latest version

2.3 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 1.0.0 (latest)
released Feb 17th 2016

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'ordenull-wordpress', '1.0.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add ordenull-wordpress
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install ordenull-wordpress --version 1.0.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

ordenull/wordpress — version 1.0.0 Feb 17th 2016

ordenull-wordpress

Overview

This module manages installations of WordPress. Most parameters can be set in the WordPress class, they will then act as defaults for the individual sites. Anything declared in the site resource will of course override what's set in the class.

When using this you should set home to an empty or non existent directory and set git_repo to a freshly created GIT repository. Do not initialize the repository. It should not have any commits. This are the steps that this module will take to install WordPress:

  1. Download the bundle from wordpress.org
  2. Generate the database configuration
  3. Generate authentication salts
  4. Trigger a WordPress installation via php-cli
  5. Email the admin password (Only if it's not specified with admin_pass)
  6. Check everything into a GIT repository and push it back to origin

Directory structure

  • public/wp-config.php : WordPress configuration that includes wp-puppet.php and wp-salts.php. This file will not be overwritten unless config_overwrite is set to true.
  • public/wp-puppet.php : Include with the database configuration
  • public/wp-salts.php : Include with the generated authentication salts
  • /sql/database.sql : The latest SQL database dump taken with each table row on a seperate line for GIT friendliness.
  • .puppet/config : Bash include with configuration that's used for the admin scripts
  • .puppet/bin : Administration scripts reside here
  • .puppet/tmp : Used as temporary storage and locks for administration scripts, safe to delete.
  • .gitignore : Generated during installation to prevent wp-puppet.php, wp-salts.php and .puppet from making it into the GIT repository.

Examples

Don't set any defaults :

class { 'wordpress': }

Set a default database server and admin email address :

class { 'wordpress':
  mysql_host  => 'blogs.mysql.mydomain.com',
  admin_email => 'webmaster@mydomain.com',
}

An unmanaged installation of WordPress in /srv/test. The mysql_host should be set in the WordPress class because it isn't specified for this resouce :

wordpress::site { 'test':
  mysql_user   => 'test',
  mysql_pass   => '',
  mysql_schema => 'test',
  hostname     => 'localhost',
  home         => '/srv/test',
}

A GIT managed WordPress installation :

wordpress::site { 'wordpress':
  mysql_user   => 'myblog',
  mysql_pass   => 'secret',
  mysql_schema => 'wp_myblog',
  hostname     => 'www.mydomain.com',
  home         => '/srv/wordpress',
  git_repo     => 'ssh://git@github.com/username/my-private-repo.git',
}

a GIT managed WordPress installation on a non default MySQL server with more restrictive file permissions :

wordpress::site { 'company':
  mysql_host   => 'company.mysql.mydomain.com',
  mysql_user   => 'company',
  mysql_pass   => 'supersecret',
  mysql_schema => 'company',
  owner        => 'copany',
  group        => 'copany',
  mode         => '660',
  hostname     => 'www.mycompany.com',
  home         => '/srv/company',
  git_repo     => 'ssh://git@github.com/username/my-company-repo.git',
}

##Copyright and License

Copyright (C) 2013 Stan Borbat

Stan Borbat can be contacted at: stan@borbat.com

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.