Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
ontodeside
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
liu-puppet-modules
ontodeside
Merge requests
!3
Test
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Test
test
into
devel
Overview
0
Commits
3
Pipelines
2
Changes
2
Merged
Robin Keskisärkkä
requested to merge
test
into
devel
1 year ago
Overview
0
Commits
3
Pipelines
2
Changes
2
Expand
0
0
Merge request reports
Compare
devel
devel (base)
and
latest version
latest version
143954f1
3 commits,
1 year ago
2 files
+
51
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
manifests/init.pp
0 → 100644
+
38
−
0
Options
# @summary A short summary of the purpose of this class
#
# A description of what this class does
#
# @example
# include ontodeside
class
ontodeside
{
$hostname
=
fact
(
'networking.fqdn'
)
profiles::letsencrypt::cert
{
$hostname
:
common_name
=>
$hostname
,
}
firewalld_service
{
'Allow SSH in the liu zone'
:
ensure
=>
present
,
zone
=>
'liu'
,
service
=>
'ssh'
,
}
firewalld_service
{
'Allow http in the liu Zone'
:
ensure
=>
present
,
zone
=>
'liu'
,
service
=>
'http'
,
}
firewalld_service
{
'Allow https in the liu Zone'
:
ensure
=>
present
,
zone
=>
'liu'
,
service
=>
'https'
,
}
firewalld_service
{
'Allow http in the public Zone'
:
ensure
=>
present
,
zone
=>
'public'
,
service
=>
'http'
,
}
firewalld_service
{
'Allow https in the public Zone'
:
ensure
=>
present
,
zone
=>
'public'
,
service
=>
'https'
,
}
}
Loading