-
Notifications
You must be signed in to change notification settings - Fork 400
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(test): use bash for jobs -r parameter
Test 20 - "NFSv3 root=dhcp DHCP IP:path" fails on Debian with following error message in `server.log`: ``` jobs -rp /sbin/init: 105: jobs: Illegal option -r ``` The jobs parameter `-r` requires bash. Partially fixes #1901 Signed-off-by: Benjamin Drung <benjamin.drung@canonical.com>
- Loading branch information
1 parent
8e9d89d
commit 9a18f13
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
#!/bin/bash | ||
exec < /dev/console > /dev/console 2>&1 | ||
set -x | ||
export PATH=/usr/sbin:/usr/bin:/sbin:/bin | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
#!/bin/bash | ||
exec < /dev/console > /dev/console 2>&1 | ||
set -x | ||
export PATH=/usr/sbin:/usr/bin:/sbin:/bin | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters