diff options
author | Guilhem Moulin <guilhem@libreoffice.org> | 2016-10-19 13:07:49 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@libreoffice.org> | 2016-10-19 13:07:53 +0200 |
commit | efbe177253d4ecbac8a9b5e02ce38df461eb01af (patch) | |
tree | 515e76e055f51fec96a7667dcf263538de19641f | |
parent | 3763273466bbc3e97701117c9cdbabe18d75c497 (diff) |
More accurate dependency check.
-rwxr-xr-x | tdfvm-install | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tdfvm-install b/tdfvm-install index 37de6ce..d5d8f8e 100755 --- a/tdfvm-install +++ b/tdfvm-install @@ -99,8 +99,10 @@ for x in ISO MEMORY DISK; do fi done -for prog in fuseiso fusermount rsync md5sum xorriso find xmlstarlet; do - which "$prog" >/dev/null || error "Missing $prog" +for prog in fuseiso fusermount rsync md5sum xorriso find xargs \ + dpkg-architecture dpkg-buildpackage dpkg-scanpackages \ + virsh virt-install xmlstarlet ssh-keygen openssl; do + which "$prog" >/dev/null || error "Missing $prog" done ISOHDPFX=/usr/lib/ISOLINUX/isohdpfx.bin |