시스템을 다시 시작한 후 basic.target 파일이 비활성 상태로 표시되는데, basic.target이 종료되면 시스템이 어떻게 부팅되는지 궁금합니다.
systemctl status basic.target
basic.target - Basic System
Loaded: loaded (/usr/lib/systemd/system/basic.target; static)
Active: inactive (dead) since Thu 2022-06-02 12:59:09 IST; 19min ago
Docs: man:systemd.special(7)
systemd[1]: Reached target Basic System.
systemd[1]: Stopped target Basic System.
basic.target 서비스를 다시 시작하면 내 유닛 파일이 비활성화됩니다.
[Unit]
Description=My service
Wants=local-fs-pre.target
Before=local-fs.target
After=systemd-remount-fs.service
DefaultDependencies=no
Conflicts=shutdown.target
[Service]
Type=oneshot
ExecStart=-/usr/lib/Myservice/Myservice start
ExecStop=-/usr/lib/Myservice/Myservice start
RemainAfterExit=yes
KillMode=process
TimeoutSec=3600
[Install]
WantedBy=sysinit.target