mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-26 14:19:51 +00:00
9 lines
257 B
Bash
9 lines
257 B
Bash
#!/bin/bash
|
|
|
|
# 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*
|
|
|
|
exec /usr/sbin/httpd -D FOREGROUND
|