mirror of
https://ghproxy.net/https://github.com/Chassis/puppet-wp.git
synced 2026-07-31 13:58:01 +08:00
12 lines
No EOL
200 B
Puppet
12 lines
No EOL
200 B
Puppet
# Create a type for "wp site" commands
|
|
define wp::site (
|
|
$aliases = [],
|
|
$location = undef,
|
|
) {
|
|
include wp::cli
|
|
|
|
wp::create_subsite { $aliases:
|
|
aliases => $aliases,
|
|
location => $location,
|
|
}
|
|
} |