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

static: mount some directories from initramfs #260

Merged
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/lxd-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
run: |
rm -rf "${{ github.workspace }}"
mkdir "${{ github.workspace }}"
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install spread
run: curl -s https://storage.googleapis.com/snapd-spread-tests/spread/spread-amd64.tar.gz | sudo tar xzv -C /usr/bin
- name: Run tests
Expand Down
6 changes: 3 additions & 3 deletions static/etc/system-image/writable-paths
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
# See writable-paths(5) for full details.
# --------------------------------------------------------------------
/home user-data persistent transition none
/snap auto persistent none none
/snap auto persistent none x-initrd.mount
# snappy security policy, etc
/var/lib/snapd auto persistent transition none
/var/lib/snapd auto persistent transition x-initrd.mount
# snap catalogue (sections, pkgnames)
/var/cache/snapd auto persistent transition none
# snap data
/var/snap auto persistent transition none
/var/snap auto persistent transition x-initrd.mount
# generic
/media none temporary none defaults
/mnt none temporary none defaults
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Run shellCheck for tools
run: |
Expand All @@ -23,7 +23,7 @@ jobs:
runs-on: self-hosted
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Run test
run: |
Expand Down