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/telnetd | |
parent | fd38002b568166932ee99ca85c2d687373e94d76 (diff) |
/etc/init.d/* Normalize log messages
Diffstat (limited to 'src.etc/init.d/telnetd')
-rwxr-xr-x | src.etc/init.d/telnetd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src.etc/init.d/telnetd b/src.etc/init.d/telnetd index 98f668d..4bb7613 100755 --- a/src.etc/init.d/telnetd +++ b/src.etc/init.d/telnetd @@ -5,13 +5,13 @@ STOP='60' start() { - log 'Starting telnetd' + log 'Starting telnet daemon' start-stop-daemon -S -q -p /var/run/telnetd.pid -m \ -x /usr/sbin/telnetd -b -- -F } stop() { - log 'Stopping telnetd' + log 'Stopping telnet daemon' start-stop-daemon -K -q -p /var/run/telnetd.pid } |