aboutsummaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-httpd/apache2/apache2_2.4.%.bbappend
blob: 7af8143fd9c18dd4baab2743d0dea2e206f1f9c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
do_install_append() {
    sed -i -e 's/#ServerName.*$/ServerName 127.0.0.1:80/' ${D}${sysconfdir}/apache2/httpd.conf

    # default layout for htdocsdir in 2.4.7 is different, create the following for
    # backward compatibility reasons

    mkdir -p ${D}${datadir}/${BPN}/default-site
    ln -sf ../htdocs ${D}${datadir}/${BPN}/default-site/htdocs
    
    sed -i '30i if [ ! -e /var/log/apache2 ]; then ln -sf /var/apache2/logs/ /var/log/apache2; fi' ${D}/etc/init.d/apache2
}

FILES_${PN} += "${datadir}/${BPN}/default-site"