-
Notifications
You must be signed in to change notification settings - Fork 354
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
Fstab handling moves to blivet #5793
base: master
Are you sure you want to change the base?
Conversation
Anaconda handling fstab is something that should be done by blivet. This moves the fstab logic into the blivet. Crypttab and blkidtab handling is not supported by blivet yet so it remains mostly unchanged (for now) Added unit_tests
cf4ab09
to
59c7535
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The tests are not very happy about this right now, but in general it looks good to me, good to move this stuff out of Anaconda.
@@ -20,6 +20,7 @@ | |||
import time | |||
|
|||
from blivet import blockdev | |||
from blivet.fstab import FSTabManager |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please also bump required version of blivet in spec to the version adding fstab support.
self.assertTrue(test_dev in devices) | ||
|
||
print("MYDEBUG: %s" % mounts) | ||
print("MYDEBUG: %s" % devices) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This probably shouldn't be here :-)
Marking as blocked, because we'll need some changes in Blivet that are not yet released, see storaged-project/blivet#1263 |
1ef59a0
to
98045a4
Compare
- removed leftover debug messages from test_fsset.py - removed unused imports from fsset.py - changed variable's names to correct values in root.py - increased required blivet version in spec file
98045a4
to
8c30339
Compare
This PR is stale because it has been open 60 days with no activity. |
@japokorn do you think you can find some time to finish the work here ? |
Anaconda handling fstab is something that should be done by blivet. This moves the fstab logic into the blivet. Crypttab and blkidtab handling is not supported by blivet yet so it remains mostly unchanged (for now)
Added unit_tests