LaunchDaemons 文件未运行?
我正在创建一个将由 Cydia 安装的 iPhone 应用程序,该应用程序包含一个 LaunchDaemons plist 和一个 unix 可执行文件。 unix 可执行文件是从 LaunchDaemons 的 plist 中调用的。
当我通过 SSH 手动将文件传输到 iPhone 时,效果很好,并且 plist 文件具有 root
所有者和 wheel
组,但是当从 Cydia 安装程序复制文件时,unix可执行文件不是从 launchDaemon 的 plist 调用的,并且 plist 文件具有 mobile
组和 mobile
所有者。
I am creating an iPhone app that will installed by Cydia, and that app includes a LaunchDaemons plist, and a unix executable file. The unix executable file is called from the LaunchDaemons's plist.
When I manually transfer files to an iPhone via SSH, that works fine and the plist file has root
owner and wheel
group, but when files are copied from Cydia installer then the unix executable file is not called from the launchDaemon's plist and the plist file has mobile
group and mobile
owner.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在上传到存储库之前,您必须
chown
您的 .app 文件并启动守护程序文件。示例:
然后
dpkg -b Test
,您应该通过 Cydia 获得正确的所有权。You have to
chown
your .app files and launch daemon file BEFORE uploading to your repository.example:
and
Then
dpkg -b Test
and you should get the correct ownership via Cydia.