mirror of
https://github.com/systemd/systemd.git
synced 2025-03-14 04:58:28 +03:00
automount: order automount units after fsck, too
This commit is contained in:
parent
8519e861a8
commit
75d287d3ae
10
fixme
10
fixme
@ -61,19 +61,17 @@
|
||||
|
||||
* if a service fails too often, make the service enter maintainence mode, and the socket, too.
|
||||
|
||||
* systemctl reboot von getty tty1 hängt
|
||||
|
||||
* keine meldung by wants vs. conflicts
|
||||
|
||||
* send cgroup msg directly
|
||||
|
||||
* fix graphical vs getty@tty1 output
|
||||
|
||||
External:
|
||||
|
||||
* default.target must be %ghosted...
|
||||
* agetty should not modify baudrate
|
||||
|
||||
* in %post create all symlinks manually and use inittab data
|
||||
|
||||
* default logic for serial getty, ck logging, ssh readahead
|
||||
* ck logging, ssh readahead
|
||||
|
||||
* pam: fix double sudo session cleanup:
|
||||
http://www.gratisoft.us/bugzilla/show_bug.cgi?id=421
|
||||
|
@ -153,7 +153,7 @@ static int automount_add_default_dependencies(Automount *a) {
|
||||
|
||||
if (a->meta.manager->running_as == MANAGER_SYSTEM) {
|
||||
|
||||
if ((r = unit_add_dependency_by_name(UNIT(a), UNIT_AFTER, SPECIAL_SYSINIT_TARGET, NULL, true)) < 0)
|
||||
if ((r = unit_add_dependency_by_name(UNIT(a), UNIT_AFTER, SPECIAL_FSCK_TARGET, NULL, true)) < 0)
|
||||
return r;
|
||||
|
||||
if ((r = unit_add_two_dependencies_by_name(UNIT(a), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_UMOUNT_TARGET, NULL, true)) < 0)
|
||||
|
@ -279,14 +279,14 @@ static int mount_add_default_dependencies(Mount *m) {
|
||||
|
||||
assert(m);
|
||||
|
||||
if (m->meta.manager->running_as == MANAGER_SYSTEM) {
|
||||
if (m->meta.manager->running_as == MANAGER_SYSTEM &&
|
||||
!path_equal(m->where, "/")) {
|
||||
|
||||
if ((r = unit_add_dependency_by_name(UNIT(m), UNIT_AFTER, SPECIAL_FSCK_TARGET, NULL, true)) < 0)
|
||||
return r;
|
||||
|
||||
if (!path_equal(m->where, "/"))
|
||||
if ((r = unit_add_two_dependencies_by_name(UNIT(m), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_UMOUNT_TARGET, NULL, true)) < 0)
|
||||
return r;
|
||||
if ((r = unit_add_two_dependencies_by_name(UNIT(m), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_UMOUNT_TARGET, NULL, true)) < 0)
|
||||
return r;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user