7 lines
89 B
Bash
7 lines
89 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
rm -r /run/*
|
|
mkdir -p /run/apache2
|
|
exec /sbin/runsvdir -P /etc/service
|