Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
control-repo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
André Gärtner
control-repo
Merge requests
!2
added pps
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
added pps
hotfix
into
main
Overview
0
Commits
1
Pipelines
0
Changes
5
Merged
André Gärtner
requested to merge
hotfix
into
main
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
5
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
f8e33d10
1 commit,
2 years ago
5 files
+
129
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
manifests/conf.pp
0 → 100644
+
18
−
0
Options
class
wordpress::conf
{
# You can change the values of these variables
# according to your preferences
$root_password
=
'password'
$db_name
=
'wordpress'
$db_user
=
'wp'
$db_user_password
=
'password'
$db_host
=
'localhost'
# Don't change the following variables
# This will evaluate to wp@localhost
$db_user_host
=
"
${db_user}
@
${db_host}
"
# This will evaluate to wp@localhost/wordpress.*
$db_user_host_db
=
"
${db_user}
@
${db_host}
/
${db_name}
.*"
}
Loading