Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 66 additions & 9 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -275,17 +275,74 @@
}

if $manage_selinux {
selboolean { 'httpd_can_network_relay':
persistent => true,
value => 'on',
# Include puppet/selinux
include selinux
# Set SELinux booleans required for httpd proper functioning
# https://linux.die.net/man/8/httpd_selinux
selinux::boolean {
default:
ensure => 'on',
persistent => true,
;
# allow httpd scripts to connect to network: Puppetboard connects
# to PuppetDB
'httpd_can_network_connect':
;
# allow httpd script to connect to database servers: PuppetDB relies
# on PostgreSQL
'httpd_can_network_connect_db':
;
# allow httpd to be used as a forward/reverse proxy
'httpd_can_network_relay':
;
# enable cgi support
'httpd_enable_cgi':
;
}
selboolean { 'httpd_can_network_connect':
persistent => true,
value => 'on',
# Set context for wsgi and settings
selinux::fcontext {
default:
ensure => present,
notify => Selinux::Exec_restorecon["${basedir}/puppetboard"],
;
"${basedir}/puppetboard/wsgi.py":
seltype => 'httpd_sys_script_exec_t',
;
$settings_file :
require => File[$settings_file],
seltype => 'httpd_sys_content_t',
;
}
selboolean { 'httpd_can_network_connect_db':
persistent => true,
value => 'on',
# Apply changes above
selinux::exec_restorecon { "${basedir}/puppetboard":
notify => Service['httpd'],
}

if $manage_virtualenv {
# Set context for venv files
selinux::fcontext {
default:
ensure => present,
require => Python::Pip['puppetboard'],
notify => Selinux::Exec_restorecon[$virtualenv_dir],
;
"${virtualenv_dir} static files":
seltype => 'httpd_sys_content_t',
pathspec => "${virtualenv_dir}(/.*\\.(cfg|css|html|ico|js|pem|png|svg|tpl|ttf|txt|woff|woff2|xml))?",
;
"${virtualenv_dir} METADATA":
seltype => 'httpd_sys_content_t',
pathspec => "${virtualenv_dir}(/.*/METADATA)?",
;
"${virtualenv_dir} executables":
seltype => 'httpd_sys_script_exec_t',
pathspec => "${virtualenv_dir}(/.*\\.(pth|py|pyc|pyi|so))?",
;
}
# Apply changes above
selinux::exec_restorecon { $virtualenv_dir :
notify => Service['httpd'],
}
}
}
}
6 changes: 5 additions & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"name": "puppet-puppetboard",
"version": "11.0.1-rc0",
Expand Down Expand Up @@ -72,7 +72,11 @@
},
{
"name": "puppet/python",
"version_requirement": ">= 6.3.0 < 9.0.0"
"version_requirement": ">= 6.3.0 < 8.0.0"
},
{
"name": "puppet/selinux",
"version_requirement": ">= 3.0.0 < 6.0.0"
}
]
}
Loading