diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-12-13 11:19:36 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-12-13 11:19:36 (EST) |
commit | 9b96363ee80de5cc5b175886a69257f45662938b (patch) | |
tree | 87064e2a183837e146057b9c03ea2096b58d752c /src.etc/init.d/httpd | |
parent | fd38002b568166932ee99ca85c2d687373e94d76 (diff) |
/etc/init.d/* Normalize log messages
Diffstat (limited to 'src.etc/init.d/httpd')
-rwxr-xr-x | src.etc/init.d/httpd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src.etc/init.d/httpd b/src.etc/init.d/httpd index c26e151..2ebd361 100755 --- a/src.etc/init.d/httpd +++ b/src.etc/init.d/httpd @@ -5,13 +5,13 @@ STOP='60' start() { - log 'Starting httpd' + log 'Starting HTTP daemon' start-stop-daemon -S -q -p /var/run/httpd.pid -m \ -x /usr/sbin/httpd -b -- -f -h /var/www } stop() { - log 'Stopping httpd' + log 'Stopping HTTP daemon' start-stop-daemon -K -q -p /var/run/httpd.pid } |