Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
wordpress
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LQDN Adminsys
piops-roles
wordpress
Commits
1d51f21b
Commit
1d51f21b
authored
Mar 04, 2019
by
Okhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing the tasks for wordpress multisite install
parent
700c2c23
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
tasks/main.yml
tasks/main.yml
+10
-4
No files found.
tasks/main.yml
View file @
1d51f21b
...
...
@@ -7,6 +7,11 @@
owner
:
"
{{
wordpress_unix_user
}}"
group
:
"
{{
webserver_user
}}"
-
name
:
création de la base de données pour wordpress
mysql_db
:
name
:
"
{{
wordpress_dbname
}}"
state
:
present
# This is vault-encrypted, but not SQL encrypted
-
name
:
ajout d'un utilisateur mysql pour wordpress
mysql_user
:
...
...
@@ -14,7 +19,8 @@
host
:
localhost
state
:
present
password
:
"
{{
wordpress_dbpass
}}"
priv
:
'
*.*:CREATE'
priv
:
"
{{
wordpress_dbname
}}.*:ALL/*.*:USAGE"
append_privs
:
true
-
block
:
# We want to always check that, in order to test other commands
...
...
@@ -34,13 +40,13 @@
when
:
wordpress.changed
-
name
:
configuration de wordpress
command
:
"
php
{{
wordpress_wpcli_path
}}
config
create
--path={{
wordpress_path
}}
--dbuser={{
wordpress_dbuser
}}
--dbname={{
wordpress_dbname
}}
--dbpass=
{{
wordpress_dbpass
}}
"
command
:
"
php
{{
wordpress_wpcli_path
}}
config
create
--path={{
wordpress_path
}}
--dbuser={{
wordpress_dbuser
}}
--dbname={{
wordpress_dbname
}}
--dbpass=
'{{
wordpress_dbpass
}}'
--dbhost=localhost
"
when
:
wordpress.changed
args
:
creates
:
"
{{
wordpress_path
}}/wp
_
config.php"
creates
:
"
{{
wordpress_path
}}/wp
-
config.php"
-
name
:
installation multisite de worpdress
command
:
"
php
{{
wordpress_wpcli_path
}}
core
multisite-install
--subdomains
--path={{
wordpress_path
}}
--url={{
wordpress_url
}}
--title=
{{
wordpress_title
}}
--admin_user={{
wordpress_admin_user
}}
--admin-
email={{
wordpress_admin_email
}}"
command
:
"
php
{{
wordpress_wpcli_path
}}
core
multisite-install
--subdomains
--path={{
wordpress_path
}}
--url={{
wordpress_url
}}
--title=
'{{
wordpress_title
}}'
--admin_user={{
wordpress_admin_user
}}
--admin_
email={{
wordpress_admin_email
}}"
when
:
wordpress.changed
-
name
:
mise à jour de wordpress
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment