| 12345678910111213141516171819 |
- Description: Qualify cryptsetup in the test suite
- Author: Christoph Biedl <debian.axhn@manchmal.in-ulm.de>
- Date: 2017-08-31
- Forwarded: not-needed
- As cryptsetup is not available in PATH for non-root, qualify the
- invocation accordingly.
- --- a/test-luksmeta
- +++ b/test-luksmeta
- @@ -14,7 +14,7 @@
- trap 'onexit' EXIT
-
- truncate -s 4M $tmp
- -echo -n foo | cryptsetup luksFormat --type luks1 $tmp -
- +echo -n foo | /usr/sbin/cryptsetup luksFormat --type luks1 $tmp -
-
- ! ./luksmeta test -d $tmp
-
|