From fa7ece50a671d18feb5f7c5750849d9c1c18729a Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Tue, 14 Jun 2016 03:20:31 +0200 Subject: accountd: Don't mention "Let's Encrypt" in log messages. --- client | 2 +- lacme-accountd | 4 ++-- webserver | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client b/client index 409fc62..810cd35 100755 --- a/client +++ b/client @@ -1,7 +1,7 @@ #!/usr/bin/perl -T #---------------------------------------------------------------------- -# Let's Encrypt ACME client +# ACME client # Copyright © 2015,2016 Guilhem Moulin # # This program is free software: you can redistribute it and/or modify diff --git a/lacme-accountd b/lacme-accountd index 2bc648f..704f836 100755 --- a/lacme-accountd +++ b/lacme-accountd @@ -148,7 +148,7 @@ do { my $umask = umask(0177) // die "umask: $!"; - print STDERR "Starting Let's Encrypt Account Key Manager at $sockname\n" unless $OPTS{quiet}; + print STDERR "Starting lacme Account Key Manager at $sockname\n" unless $OPTS{quiet}; socket(my $sock, PF_UNIX, SOCK_STREAM, 0) or die "socket: $!"; my $sockaddr = Socket::sockaddr_un($sockname) // die; bind($sock, $sockaddr) or die "bind: $!"; @@ -195,7 +195,7 @@ END { unlink $SOCKNAME or print STDERR "Can't unlink $SOCKNAME: $!\n"; } if (defined $S) { - print STDERR "Shutting down and closing Let's Encrypt Account Key Manager\n" unless $OPTS{quiet}; + print STDERR "Shutting down and closing lacme Account Key Manager\n" unless $OPTS{quiet}; shutdown($S, SHUT_RDWR) or warn "shutdown: $!"; close $S or print STDERR "Can't close: $!\n"; } diff --git a/webserver b/webserver index 0fe2979..df4e3ba 100755 --- a/webserver +++ b/webserver @@ -1,7 +1,7 @@ #!/usr/bin/perl -T #---------------------------------------------------------------------- -# Let's Encrypt ACME client (webserver component) +# ACME client (webserver component) # Copyright © 2015,2016 Guilhem Moulin # # This program is free software: you can redistribute it and/or modify -- cgit v1.2.3