나는 t1.target
과 을 가지고 있습니다 t2.target
. t2.target
모든 종속 서비스가 완료된 후에 만 시작되도록 하고 싶습니다 . t1.target
지금 이것을 조롱했지만 작동하지 않는 것 같습니다.
t1.대상
[Unit]
Description=Foo.
[Install]
WantedBy=multi-user.target
t2.
[Unit]
Description=Bar.
After=t1.target
Wants=t1.target
Requires=t1.target
[Install]
WantedBy=multi-user.target
서비스
[Unit]
Description=Foo
[Service]
Type=oneshot
ExecStart=/tmp/first.sh
[Install]
WantedBy=t1.target
PartOf=t1.target
b.서비스
[Unit]
Description=Foo
[Service]
Type=oneshot
ExecStart=/tmp/second.sh
[Install]
WantedBy=t2.target
PartOf=t2.target