This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/docker-test/run-apache.sh

9 lines
257 B
Bash
Raw Normal View History

2015-09-27 21:48:38 -04:00
#!/bin/bash
2015-09-27 21:16:02 -04:00
2015-09-27 21:48:38 -04:00
# Make sure we're not confused by old, incompletely-shutdown httpd
# context after restarting the container. httpd won't start correctly
# if it thinks it is already running.
rm -rf /run/httpd/* /tmp/httpd*
2015-09-27 21:16:02 -04:00
2015-09-27 21:48:38 -04:00
exec /usr/sbin/httpd -D FOREGROUND