diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2016-06-14 03:20:31 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2016-06-14 03:20:31 +0200 |
commit | fa7ece50a671d18feb5f7c5750849d9c1c18729a (patch) | |
tree | c60b87ce570254dab44d497b7e48dc8872ba201f | |
parent | 51347d0d20bcde8b9b26f967f6598e3c23d20e13 (diff) |
accountd: Don't mention "Let's Encrypt" in log messages.
-rwxr-xr-x | client | 2 | ||||
-rwxr-xr-x | lacme-accountd | 4 | ||||
-rwxr-xr-x | webserver | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -1,7 +1,7 @@ #!/usr/bin/perl -T #---------------------------------------------------------------------- -# Let's Encrypt ACME client +# ACME client # Copyright © 2015,2016 Guilhem Moulin <guilhem@fripost.org> # # 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"; } @@ -1,7 +1,7 @@ #!/usr/bin/perl -T #---------------------------------------------------------------------- -# Let's Encrypt ACME client (webserver component) +# ACME client (webserver component) # Copyright © 2015,2016 Guilhem Moulin <guilhem@fripost.org> # # This program is free software: you can redistribute it and/or modify |