システムを再起動した後、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