Skip to content
Open
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
20 changes: 15 additions & 5 deletions idoit-install
Original file line number Diff line number Diff line change
Expand Up @@ -1142,11 +1142,21 @@ EOF
chown "$APACHE_USER":"$APACHE_GROUP" -R "${INSTALL_DIR}/" || \
abort "Unable to change ownership"

log "SELinux: Allow Apache Web server to read/write files under ${INSTALL_DIR}/"
chcon -t httpd_sys_content_t "${INSTALL_DIR}/" -R || \
abort "Unable to give read permissions recursively"
chcon -t httpd_sys_rw_content_t "${INSTALL_DIR}/" -R || \
abort "Unable to give write permissions recursively"
log "Check if selinux is enabled"
if [ $? -ne 0 ]
Comment thread
MichaelOv marked this conversation as resolved.
then
log "selinux is disable"
else
log "SELinux: Allow Apache Web server to read/write files under ${INSTALL_DIR}/"
chcon -t httpd_sys_content_t "${INSTALL_DIR}/" -R || \
abort "Unable to give read permissions recursively"
chcon -t httpd_sys_rw_content_t "${INSTALL_DIR}/" -R || \
abort "Unable to give write permissions recursively"
fi

Comment thread
phoerselmann marked this conversation as resolved.
log "SELinux: Allow Apache to use PHP-LDAP"
setsebool -P httpd_can_connect_ldap on || \
abort "Unable to set sebool to true"

## mpm_event is already enabled on RHEL 8:
if [[ "$OS" != "rhel8" ]]; then
Expand Down