mirror of
https://github.com/systemd/systemd.git
synced 2024-11-27 12:13:33 +08:00
cryptsetup: fix ordering loop when dealing with encrypted swap devices
https://bugzilla.redhat.com/show_bug.cgi?id=657234
This commit is contained in:
parent
ed86ebc414
commit
63c862b051
12
Makefile.am
12
Makefile.am
@ -1190,14 +1190,12 @@ install-data-hook:
|
||||
fsck-root.service \
|
||||
remount-rootfs.service \
|
||||
var-run.mount \
|
||||
var-lock.mount \
|
||||
cryptsetup.target && \
|
||||
var-lock.mount && \
|
||||
$(LN_S) ../systemd-remount-api-vfs.service systemd-remount-api-vfs.service && \
|
||||
$(LN_S) ../fsck-root.service fsck-root.service && \
|
||||
$(LN_S) ../remount-rootfs.service remount-rootfs.service && \
|
||||
$(LN_S) ../var-run.mount var-run.mount && \
|
||||
$(LN_S) ../var-lock.mount var-lock.mount && \
|
||||
$(LN_S) ../cryptsetup.target )
|
||||
$(LN_S) ../var-lock.mount var-lock.mount )
|
||||
( cd $(DESTDIR)$(userunitdir) && \
|
||||
rm -f shutdown.target sockets.target local-fs.target swap.target bluetooth.target printer.target && \
|
||||
$(LN_S) $(systemunitdir)/shutdown.target shutdown.target && \
|
||||
@ -1253,7 +1251,8 @@ install-data-hook:
|
||||
systemd-random-seed-load.service \
|
||||
systemd-tmpfiles-setup.service \
|
||||
systemd-sysctl.service \
|
||||
systemd-ask-password-console.path && \
|
||||
systemd-ask-password-console.path \
|
||||
cryptsetup.target && \
|
||||
$(LN_S) ../dev-hugepages.automount dev-hugepages.automount && \
|
||||
$(LN_S) ../dev-mqueue.automount dev-mqueue.automount && \
|
||||
$(LN_S) ../proc-sys-fs-binfmt_misc.automount proc-sys-fs-binfmt_misc.automount && \
|
||||
@ -1264,7 +1263,8 @@ install-data-hook:
|
||||
$(LN_S) ../systemd-random-seed-load.service systemd-random-seed-load.service && \
|
||||
$(LN_S) ../systemd-tmpfiles-setup.service systemd-tmpfiles-setup.service && \
|
||||
$(LN_S) ../systemd-sysctl.service systemd-sysctl.service && \
|
||||
$(LN_S) ../systemd-ask-password-console.path systemd-ask-password-console.path )
|
||||
$(LN_S) ../systemd-ask-password-console.path systemd-ask-password-console.path && \
|
||||
$(LN_S) ../cryptsetup.target cryptsetup.target )
|
||||
( cd $(DESTDIR)$(systemunitdir)/basic.target.wants && \
|
||||
rm -f systemd-tmpfiles-clean.timer && \
|
||||
$(LN_S) ../systemd-tmpfiles-clean.timer systemd-tmpfiles-clean.timer )
|
||||
|
3
TODO
3
TODO
@ -1,8 +1,5 @@
|
||||
Bugs:
|
||||
|
||||
* dep loop when using encrypted swap
|
||||
https://bugzilla.redhat.com/show_bug.cgi?id=657234
|
||||
|
||||
* somehow some /etc/fstab supplied mount params are never applied to api fs
|
||||
https://bugzilla.redhat.com/show_bug.cgi?id=663108
|
||||
|
||||
|
@ -9,6 +9,3 @@
|
||||
|
||||
[Unit]
|
||||
Description=Encrypted Volumes
|
||||
|
||||
[Install]
|
||||
WantedBy=local-fs.target
|
||||
|
Loading…
Reference in New Issue
Block a user