nspawn: if we don't find bash, try sh

This commit is contained in:
Lennart Poettering 2014-02-14 16:41:03 +01:00
parent af1082b04a
commit 262d10e6bd

View file

@ -1968,6 +1968,7 @@ int main(int argc, char *argv[]) {
else {
chdir(home ? home : "/root");
execle("/bin/bash", "-bash", NULL, env_use);
execle("/bin/sh", "-sh", NULL, env_use);
}
log_error("execv() failed: %m");