Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the '10.9: Preferences are cached' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
10.9: Preferences are cached
Authored by: kimr on Oct 22, '13 06:46:05PM
It looks like it is a launched job.

artemis:~ kim$ launchctl list | grep com.apple.syncdefaultsd
3112	-	com.apple.syncdefaultsd

artemis:~ kim$ cat /System/Library/LaunchAgents/com.apple.syncdefaultsd.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>LimitLoadToSessionType</key>
	<string>Background</string>
	<key>POSIXSpawnType</key>
	<string>Adaptive</string>
	<key>Label</key>
	<string>com.apple.syncdefaultsd</string>
	<key>KeepAlive</key>
	<false/>
	<key>MachServices</key>
	<dict>
		<key>com.apple.syncdefaultsd</key>
		<true/>
		<key>com.apple.syncdefaultsd.push</key>
		<true/>
	</dict>
	<key>ProgramArguments</key>
	<array>
		<string>/System/Library/PrivateFrameworks/SyncedDefaults.framework/Support/syncdefaultsd</string>
	</array>
	<key>LaunchEvents</key>
	<dict>
		<key>com.apple.distnoted.matching</key>
		<dict>
			<key>com.apple.syncdefaultsd.iCloudLogin</key>
			<dict>
				<key>Name</key>
				<string>com.apple.AOSAccounts.AOSAccountStatusLoginNotification</string>
			</dict>
			<key>com.apple.syncdefaultsd.iCloudLogout</key>
			<dict>
				<key>Name</key>
				<string>com.apple.AOSAccounts.AOSAccountStatusLogoutNotification</string>
			</dict>
			<key>com.apple.syncdefaultsd.iCloudStatusChange</key>
			<dict>
				<key>Name</key>
				<string>com.apple.AOSAccounts.AOSServiceStatusChangedNotification</string>
			</dict>
			<key>com.apple.syncdefaultsd.iCloudVetted</key>
			<dict>
				<key>Name</key>
				<string>com.apple.AOSAccounts.AOSServiceStatusVettingChangedNotification</string>
			</dict>
			<key>com.apple.syncdefaultsd.iCloudConfig</key>
			<dict>
				<key>Name</key>
				<string>com.apple.AOSAccounts.AOSServiceStatusConfigNotification</string>
			</dict>
		</dict>
	</dict>
</dict>
</plist>


[ Reply to This | # ]