We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f8c339d + 62bc3d3 commit 9ee46b4Copy full SHA for 9ee46b4
1 file changed
tests/console/apache.pm
@@ -144,6 +144,10 @@ sub run {
144
assert_script_run q{sed -ie 's/^User daemon$/User wwwrun/' /tmp/prefork/httpd.conf};
145
assert_script_run q{sed -ie 's/^Group daemon$/Group www/' /tmp/prefork/httpd.conf};
146
147
+ # https://bugzilla.suse.com/show_bug.cgi?id=1265305
148
+ # modules for prefork reside in /usr/lib64/apache2-prefork now on sle16.1
149
+ assert_script_run q{sed -i 's#/usr/lib64/apache2#/usr/lib64/apache2-prefork#g' /tmp/prefork/httpd.conf} if is_sle('>=16.1');
150
+
151
# Run and test this new environment
152
assert_script_run 'httpd-prefork -f /tmp/prefork/httpd.conf';
153
assert_script_run 'until ps aux|grep wwwrun|grep -E httpd\(2\)?-prefork; do echo waiting for httpd-prefork pid; done';
0 commit comments