Deprecated in Pike, and removed from diskimage-builder for a while. Story: 2001996 Task: 19626 Change-Id: I9b4eab56fcbfcb2e97805fba805eafeeafa5d540
14 lines
181 B
Bash
Executable File
14 lines
181 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "${DIB_DEBUG_TRACE:-0}" -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
case "${DISTRO_NAME}" in
|
|
centos7 | rhel7 )
|
|
chkconfig httpd on
|
|
;;
|
|
esac
|