0

我在 PKG 安装程序中运行的安装后 Bash 脚本文件中有这一行:

launchctl load /Library/LaunchDaemons/com.mycompany.myapp.plist

PKG 正确安装了作业 plist 文件和作业调用的小程序。

但是当我检查作业是否加载到终端时,我没有得到任何返回:

launchctl list | grep mycompany

如果我在终端中执行相同的加载命令,作业将按预期加载。

为什么脚本运行时作业没有加载?

4

1 回答 1

1

当您launchctl list以普通用户身份运行时,它会列出在您的用户会话中运行的启动代理;列出 Launch Daemons,以 root 身份运行它(即sudo launchctl list)。

更多详细信息:一些launchctl子命令允许您明确指定要处理的域。例如:

launchctl print system      # Prints Launch *Daemons*
launchctl print user/501    # Prints Launch *Agents* for user #501's session

但是较旧的“遗留”子命令,如list, load, unload, start,stop等早于此约定,并使用命令运行的用户 ID 来确定要操作的域。例如:

launchctl load /path/to/plist         # Loads the plist as an Agent in my user session
launchctl list                        # Lists Agents in my user session
sudo launchctl load /path/to/plist    # Loads it as a Daemon in the system domain
sudo launchctl list                   # Lists Daemons in the system domain

您的包可能以 root 身份运行其脚本,因此它将作为守护程序加载作业(这是您想要的),但它可以完全取决于包的配置方式。

于 2021-03-11T00:01:56.097 回答