-
Notifications
You must be signed in to change notification settings - Fork 143
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
[BUG] Alternative default bastille_zfs_prefix
#713
Comments
Thanks for the comment and the workaround, I'm gonna take this |
There might need to be a variable added here. Say someone wants to run Bastille on pool/dataset1/dataset2. The only way to make this work is by setting the Since the code has already been written to use only those two variables, one could just update the docs to let people know that the alternative of course is to submit #729 and add documentation telling people to set |
@MamoruDS thanks for the report, PR #738 should fix it and it's now merged to the @tschettervictor I guess |
bastille_zfs_prefix
bastille_zfs_prefix
I'll give it a go, sure. |
Closing this issue as the fix has been merged previously |
Is your feature request related to a problem? Please describe.
The current default value of
bastille_zfs_prefix
has been changed(#711) to${bastille_zfs_zpool}/bastille
. Since all the scripts use${bastille_zfs_zpool}/${bastille_zfs_prefix}
as the dataset path prefix, this causes a duplication ofbastille_zfs_zpool
(which will bezroot/zroot/bastille
aftersetup
without any modification).Describe the solution you'd like
To avoid this issue, manually change the config value of
bastille_zfs_prefix
to an arbitrary value (e.g., the previousbastille
). Reverting tobastille
as the default may provide a smoother experience.Additional context
An example in
bootstrap.sh
shows the script using${bastille_zfs_zpool}/${bastille_zfs_prefix}
as the dataset path:https://github.com/BastilleBSD/bastille/blame/cee6f20aa5c228e7e4791bc9d0fcdc412bab71ae/usr/local/share/bastille/bootstrap.sh#L150
The text was updated successfully, but these errors were encountered: