54 lines
2.0 KiB
Puppet
54 lines
2.0 KiB
Puppet
# Copyright 2014 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
# Class: cgit::selinux
|
|
#
|
|
class cgit::selinux {
|
|
selboolean { 'httpd_enable_cgi':
|
|
persistent => true,
|
|
value => on
|
|
}
|
|
|
|
exec { 'cgit_allow_http_port':
|
|
unless => "semanage port -l | grep \'http_port_t.*tcp.*${::cgit::http_port}\'",
|
|
command => "semanage port -a -t http_port_t -p tcp ${::cgit::http_port} \
|
|
|| semanage port -m -t http_port_t -p tcp ${::cgit::http_port}",
|
|
path => '/bin:/usr/sbin',
|
|
before => Service['httpd'],
|
|
subscribe => File['/etc/httpd/conf/httpd.conf'],
|
|
}
|
|
|
|
exec { 'cgit_allow_https_port':
|
|
unless => "semanage port -l | grep \'http_port_t.*tcp.*${::cgit::https_port}\'",
|
|
command => "semanage port -a -t http_port_t -p tcp ${::cgit::https_port} \
|
|
|| semanage port -m -t http_port_t -p tcp ${::cgit::https_port}",
|
|
path => '/bin:/usr/sbin',
|
|
subscribe => File['/etc/httpd/conf.d/ssl.conf'],
|
|
}
|
|
|
|
exec { 'cgit_allow_git_daemon_port':
|
|
unless => "semanage port -l | grep \'git_port_t.*tcp.*${::cgit::daemon_port}\'",
|
|
command => "semanage port -a -t git_port_t -p tcp ${::cgit::daemon_port} \
|
|
|| semanage port -m -t git_port_t -p tcp ${::cgit::daemon_port}",
|
|
path => '/bin:/usr/sbin',
|
|
before => Service[$::cgit::git_daemon_service_name],
|
|
subscribe => [
|
|
File['git-daemon-init-script'],
|
|
File['/usr/lib/systemd/system/git-daemon.socket'],
|
|
],
|
|
refreshonly => true,
|
|
}
|
|
}
|
|
|