goto error;
}
}
+ } else if (p->type == VIR_CONF_STRING) {
+ len = 1; /* /path/to/shell */
} else {
virReportSystemError(EINVAL, "%s",
_("shell must be a list of strings"));
if (VIR_STRDUP(shargv[i++], pp->str) < 0)
goto error;
}
+ } else if (p->type == VIR_CONF_STRING) {
+ if (VIR_STRDUP(shargv[i++], p->str) < 0)
+ goto error;
}
shargv[i] = NULL;
# By default, virt-login-shell will connect you to a container running
# with the /bin/sh program. Modify the shell variable if you want your
# users to run a different shell or a setup container when joining a
-# container. Shell commands must be a list of commands/options separated by
-# comma and delimited by square brackets. Defaults to: /bin/sh -l.
-# Modify and uncomment the following to modify the login shell.
+# container.
#
-# shell = [ "/bin/bash" ]
+# This can either be just the path to a shell binary:
+#
+# shell = "/bin/bash"
+#
+# Or can be the path and extra arguments
+#
+# shell = [ "/bin/bash", "--posix" ]
#
# Note there is no need to pass a '--login' / '-l' argument since
# virt-login-shell will always request a login shell