projects
/
mmh
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
17de69d
)
Use the same mh_hostname() function from test/common.h in mhsign(1)
author
Vasilii Kolobkov
<polezaivsani@ko5v.net>
Thu, 19 Jul 2018 16:55:57 +0000
(18:55 +0200)
committer
markus schnalke
<meillo@marmaro.de>
Wed, 31 Oct 2018 09:54:12 +0000
(10:54 +0100)
uip/mhsign.sh
patch
|
blob
|
history
diff --git
a/uip/mhsign.sh
b/uip/mhsign.sh
index
39a3f69
..
894ca5e
100755
(executable)
--- a/
uip/mhsign.sh
+++ b/
uip/mhsign.sh
@@
-101,6
+101,12
@@
lookupkeyring() {
return 0
}
+### Do a best guess at FQDN
+mh_hostname()
+{
+ hostname -f 2>/dev/null || uname -n
+}
+
### lookupkeys file -- set $KL to list of recipient keys
lookupkeys() {
KL=
@@
-120,7
+126,7
@@
lookupkeys() {
'|'*) echo "Ignoring pipe address" >&2
continue ;;
*@*) ;;
- *) i="$i@`hostname -f`" ;;
+ *) i="$i@`mh_hostname`" ;;
esac
if k=`lookupkeyfile "$i"` ; then
KL="$KL $k"