Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mount in /dev/pts to allow ptmx to be available #126

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/distro-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
env:
VAGRANT_DEFAULT_PROVIDER: docker
VAGRANT_LIBVIRT_DRIVER: qemu
QA_VAGRANT_VERSION: 2.3.4
strategy:
fail-fast: false
matrix:
Expand All @@ -46,7 +47,7 @@ jobs:
echo "QA_VAGRANT_LIBVIRT_VERSION=git-$(git submodule status -- vagrant-libvirt | cut -d' ' -f2)" >> ${GITHUB_ENV}
- name: Set up libvirt
run: |
./scripts/install.bash --vagrant-only
./scripts/install.bash --vagrant-only --vagrant-version 2.3.4
- uses: actions/[email protected]
with:
path: ~/.vagrant.d/boxes
Expand Down
1 change: 1 addition & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ Vagrant.configure(2) do |config|
# next two needed for systemd in container
"/sys/fs/cgroup:/sys/fs/cgroup:ro",
"/sys/fs/cgroup/systemd:/sys/fs/cgroup/systemd:rw",
"/dev/pts:/dev/pts:rw",
]
docker.create_args = [
"--privileged",
Expand Down