diff options
author | Kevin Kuehler <keur@xcf.berkeley.edu> | 2019-10-31 15:41:32 -0700 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2019-11-01 13:34:41 +0100 |
commit | b9dc511954b080d8b05a44f1758be6dbb4078852 (patch) | |
tree | 4b7c7950e94a57bcac79940dd6ff1388b13df74f /.mkosi | |
parent | f14c9bafa8b8cba89cabc22a10b1200eec9eb682 (diff) | |
download | systemd-b9dc511954b080d8b05a44f1758be6dbb4078852.tar.gz |
mkosi: Find hostname command on Arch Linux
exec-specifier.service: Executing: /usr/bin/sh -c 'test mkosi-7d5e81c7b81c42338d060a6b98edd44a = $(hostname)'
/usr/bin/sh: hostname: command not found
/usr/bin/sh: line 0: test: mkosi-7d5e81c7b81c42338d060a6b98edd44a: unary operator expected
Received SIGCHLD from PID 7389 (sh).
Child 7389 (sh) died (code=exited, status=2/INVALIDARGUMENT)
gettext provides the hostname binary, but puts it in
/usr/lib/gettext/hostname, which is not part of the default $PATH. Using
inetutils instead puts the binary in /usr/bin/hostname.
Diffstat (limited to '.mkosi')
-rw-r--r-- | .mkosi/mkosi.arch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.mkosi/mkosi.arch b/.mkosi/mkosi.arch index ce0c1ae38e..350d7cd2b8 100644 --- a/.mkosi/mkosi.arch +++ b/.mkosi/mkosi.arch @@ -27,11 +27,11 @@ BuildPackages= docbook-xsl elfutils gcc - gettext git gnu-efi-libs gnutls gperf + inetutils iptables kmod libcap |