我正在通过cocoa app运行卸载脚本,我注意到launchctl命令没有被执行。
这是调用脚本的代码的一部分(其中包含sudo launchctl unload“守护程序的名称”)
//pFileName is the name of the File
NSString* pPath = [pCurrentBundle pathForResource:pFileName ofType:@"sh"];
char* const ppArgs[] = {const_cast<char*>([pPath fileSystemRepresentation]), NULL};
OSStatus status = AuthorizationExecuteWithPrivileges(m_AuthorizationRef, "/bin/sh", kAuthorizationFlagDefaults, ppArgs, NULL);
由于所有其他脚本命令都正确执行(并且它在终端中卸载正常),我猜测我没有与root用户相同的权限(EUID和RUID都为0),如TN2083所述。
答案 0 :(得分:0)
首先,您不应该在已经以root身份运行的脚本中使用sudo
。在默认的Mac设置下,它不应该导致问题,但它取决于用户配置sudoers的方式。这仍然是我对最新情况的最大怀疑。
接下来,在运行时,您是否收到任何错误消息给控制台?你提到其他事情正在运行;他们之前还是之后?您是否正在检查此脚本行中的unix错误结果?
我假设您已阅读Creating launchd Daemons and Agents。
你说脚本正在运行,所以我假设它实际上有扩展名.sh而且pFileName不包含“.sh”。
TN2083未提及AuthorizationExecuteWithPrivileges
。你是什么意思“作为TN2083状态?”
我假设您没有在脚本上设置setuid位,对吗?这会给你AuthorizationExecuteWithPrivileges
带来麻烦。