-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix[close #77]: fstab ignored during boot
- Loading branch information
1 parent
c39c526
commit 2cff530
Showing
3 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
includes.container/usr/lib/systemd/system/abroot-mount-fstab.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=Mount ABRoot fstab entries at boot | ||
After=network.target | ||
Before=graphical.target | ||
|
||
[Service] | ||
Type=oneshot | ||
ExecStart=/.system/usr/bin/mount -a | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
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,4 @@ | ||
name: abroot-fstab-mount | ||
type: shell | ||
commands: | ||
- ln -s /usr/lib/systemd/system/abroot-mount-fstab.service /etc/systemd/system/multi-user.target.wants/abroot-mount-fstab.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