启动后 Systemd 计时器模板?

启动后 Systemd 计时器模板?

我有一个模板化计时器,它调用模板化单元。我使用以下命令启用和启动它们:

sudo systemctl enable [email protected]
sudo systemctl enable ping@service
sudo systemctl start [email protected]

这按预期工作,并且计时器[email protected]按预期激活。但是,重新启动后这种情况不会持续,大概是因为我没有启用计时器的实例。但以下操作失败,并出现“不存在”错误:

sudo systemctl enable [email protected]

如何让模板计时器在每次启动时启动?

答案1

错误在于我——“诀窍”是在计时器上使用两个启用功能:

sudo systemctl enable [email protected]
sudo systemctl enable ping@service
sudo systemctl enable [email protected]

当我尝试在模板之前启用计时器的实例时出现错误。

相关内容