Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mpm: sysutils: mount: Check both mount point and data path | Martin Braun | 2021-04-21 | 1 | -4/+5 |
| | | | | | This will return False on ismounted() if a Mount class is mounted, but in the wrong spot. | ||||
* | mpm: mount: Demote already-mounted warning | Martin Braun | 2021-04-21 | 1 | -1/+1 |
| | | | | | | | | The class Mount defines a mount point and device path. It currently warns if mount() is called twice, but that warning is at odds with the contract of that API. It even returns 'True' (== success) after printing the warning, and the outcome is the desired one. For that reason, we demote the warning to a debug statement. | ||||
* | mpm: added Mount class | Joerg Hofrichter | 2021-02-11 | 1 | -0/+96 |
Class for creating a mount point |