-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from arkane-systems/dev-0.8
Merge request for dev-0.8.
- Loading branch information
Showing
5 changed files
with
23 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
import helpers | ||
|
||
# Global variables | ||
version = "0.7" | ||
version = "0.8" | ||
|
||
verbose = False | ||
login = None | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
bottle-imp (0.8) buster bullseye bookworm sid focal jammy; urgency=medium | ||
|
||
* Added remounting of / as shared (container mode loss). | ||
|
||
-- Alistair Young <[email protected]> Fri, 07 Oct 2022 18:00:00 -0500 | ||
|
||
bottle-imp (0.7) buster bullseye bookworm sid focal jammy; urgency=medium | ||
|
||
* 0.68.2 - remove the tmpfiles config. | ||
|
11 changes: 11 additions & 0 deletions
11
othersrc/usr-lib/systemd/system/remount-root-shared.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[Unit] | ||
Description=Remount Root Filesystem Shared | ||
DefaultDependencies=no | ||
Before=sysinit.target | ||
|
||
[Service] | ||
Type=oneshot | ||
ExecStart=/bin/mount --make-rshared / | ||
|
||
[Install] | ||
WantedBy=sysinit.target |