necessary but not sufficient

This commit is contained in:
Jean-Paul Calderone 2018-06-15 15:13:17 -04:00
parent 02c5a72924
commit 182d6aec94
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash -eo pipefail
# Avoid the /nonexistent home directory in nobody's /etc/passwd entry.
usermod --home /tmp/nobody nobody

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash -eo pipefail
# Run the test suite as a non-root user. This is the expected usage some
# small areas of the test suite assume non-root privileges (such as unreadable

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash -eo pipefail
# Set up the virtualenv as a non-root user so we can run the test suite as a
# non-root user. See below.