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
9f69a045
Commit
9f69a045
authored
Feb 18, 2019
by
Okhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Première base pour installer wordpress
parent
bedbe764
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
+31
-0
tasks/main.yml
tasks/main.yml
+31
-0
No files found.
tasks/main.yml
0 → 100644
View file @
9f69a045
---
-
block
:
become
:
yes
become_user
:
grange
-
name
:
ajout d'un répertoire pour le core wordpress
file
:
status
:
directory
src
:
"
{{
wordpress_path
}}"
mode
:
0755
owner
:
"
{{
wordpress_unix_user
}}"
group
:
"
{{
webserver_user
}}
"
-
name
:
est-ce que wordpress est installé ?
command
:
"
php
{{
wordpress_wpcli_path
}}
core
is-installed
--path={{
wordpress_path
}}"
register
:
wordpress
changed_when
:
"
wordpress.rc
>=
1"
-
name
:
téléchargement de wordpress
command
:
"
php
{{
wordpress_wpcli_path
}}
core
download
--path={{
wordpress_path
}}"
when
:
wordpress.changed
-
name
:
installation 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
}}"
when
:
wordpress.changed
-
name
:
mise à jour de wordpress
command
:
"
php
{{
wordpress_wpcli_path
}}
core
update
--path={{
wordpress_path
}}"
-
name
:
mise à jour de la BDD de wordpress
command
:
"
php
{{
wordpress_wpcli_path
}}
core
update-db
--network
--path={{
wordpress_path
}}"
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