diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-11-27 14:02:25 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-11-27 14:02:25 +0100 |
commit | 97839ed6b7b19e2cb885a152b54fbd32334294e2 (patch) | |
tree | 98fe7d2a4ab96fb34756097030a6f5290372c1aa /src/core/swap.c | |
parent | 2281b56044ac36c1eec0bfc61cf3b172bc9d52b9 (diff) | |
parent | 9d06297e262966de71095debd1537fc223f940a3 (diff) |
Merge pull request #2017 from haraldh/nobinddevice2
core: Do not bind a mount unit to a device, if it was from mountinfo
Diffstat (limited to 'src/core/swap.c')
-rw-r--r-- | src/core/swap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/swap.c b/src/core/swap.c index b6e4372fc0..5568898bd7 100644 --- a/src/core/swap.c +++ b/src/core/swap.c @@ -202,7 +202,7 @@ static int swap_add_device_links(Swap *s) { return 0; if (is_device_path(s->what)) - return unit_add_node_link(UNIT(s), s->what, UNIT(s)->manager->running_as == MANAGER_SYSTEM); + return unit_add_node_link(UNIT(s), s->what, UNIT(s)->manager->running_as == MANAGER_SYSTEM, UNIT_BINDS_TO); else /* File based swap devices need to be ordered after * systemd-remount-fs.service, since they might need a |