2013-08-27 101 views
-1

我下載了Google App Engine安裝程序並安裝了GAE。現在我得到一個定期的彈出窗口詢問我是否想更新它。似乎沒有辦法關閉它。如何讓Google App Engine安裝程序停止嘗試安裝?

這件事情是如何掛鉤到我的操作系統?

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喚醒。任何想法如何關閉它?

回答

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/> 
+0

以及它竟然是在全系統/圖書館/ LaunchAgents /,但我發現它;現在看看它是否有效,我想我會永遠不會注意到,除非我想到它;謝謝 – Daniel