我下载了Google App Engine安装程序并安装了GAE。现在我得到一个定期弹出窗口,询问我是否要更新它。似乎没有任何办法可以将其关闭。
这件事如何与我的操作系统挂钩?
bash-3.2# pwd
/usr/lib/cron/tabs
bash-3.2# ls -la
total 0
drwx------ 2 root wheel 68 May 18 2009 .
drwxr-xr-x 8 daemon wheel 272 Sep 4 2011 ..
bash-3.2#
不。
$ ls /etc/crontab
ls: /etc/crontab: No such file or directory
不。
似乎不是cron醒来的。关于如何关闭它的任何想法?
答案 0 :(得分:2)
正在使用launchd来安排更新。其配置文件应位于用户的LaunchAgents目录(~/Library/LaunchAgents/
)中。它可以被modifying the plist file to add a disabled key禁用(而不是仅仅删除整个内容):
open ~/Library/LaunchAgents/com.google.keystone.agent.plist
然后添加禁用密钥:
<key>Disabled</key>
<true/>