We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
sbctl export-enrolled-keys always complains about the output directory on my machine:
sbctl export-enrolled-keys
# sbctl export-enrolled-keys --dir /tmp/foo populating ruleset for "/tmp/foo" with access {execute,write_file,read_file}: open: no such file or directory # mkdir /tmp/foo # sbctl export-enrolled-keys --dir /tmp/foo creating the output directory: directory already exists
Do I miss something or is it broken?
I'm on Arch Linux with sbclt 0.16.
The text was updated successfully, but these errors were encountered:
Try to disable the sandbox with --disable-landlock
--disable-landlock
Sorry, something went wrong.
sbctl export-enrolled-keys --disable-landlock --dir /tmp/foo works! (without creating the output directory before) Thanks @Foxboron 👍
sbctl export-enrolled-keys --disable-landlock --dir /tmp/foo
The output dir needs filepath.Base and RWDirs for landlock to work.
filepath.Base
RWDirs
https://github.com/Foxboron/sbctl/blob/master/cmd/sbctl/export-enrolled-keys.go#L34
No branches or pull requests
sbctl export-enrolled-keys
always complains about the output directory on my machine:Do I miss something or is it broken?
I'm on Arch Linux with sbclt 0.16.
The text was updated successfully, but these errors were encountered: