Forum Discussion
Spot the rookie error
Hmm... I copied/pasted into a text file, then opened it in Xcode and it seemed to read like a proper plist, so the 'invalid' thing is very strange.
Sounds like my kind of challenge. I'll kick it around as well to see what I can get working. Maybe together we can solve this.
I agree that this can ultimately be very helpful to other Mac users that want to automate updates in the Bonus period - or for anyone that just wants to do things overnight for that matter.
I can even create a frontend in Xcode that creates/positions the file with the desired softwareupdate options once we figure out the what and where.
FWIW I just opened a terminal and pounded out the code following sample structures of course.
I've done some more searching (do my best thinking in the middle of the night... uninterrupted LOL) and I don't think it has to have a listener. (but maybe)
It might need a keep alive but that can be added (if necessary) after It will load.
I've played around with the StandardErrorPath and the StandardOutputPath thinking (at first) the problem might be there.
Apparently it's not that easy a task or someone somewhere would have written it.
It's clearly something that satellite users could benefit from.........
Hopefully together we can do this for the community.
I'll keep you posted with any progress here.
Good Luck
Don :)
- MarkJFine8 years agoProfessor
Try this, just for grins:
1. Create a UTF-8 text file called com.example.softwareupdate.plist and put this in it:
-----8<----<?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>Label</key>
<string>com.example.softwareupdate</string>
<key>ProgramArguments</key>
<array>
<string>softwareupdate</string>
<string>--download</string>
<string>--all</string>
</array>
<key>StartCalendarInterval</key>
<dict>
<key>Hour</key>
<integer>2</integer>
<key>Minute</key>
<integer>10</integer>
</dict>
</dict>
</plist>-----8<----
2. Move the file to ~/Library/LaunchAgents/
3. Change the privileges to owner, rw only:
chmod 600 com.example.softwareupdate.plist
4. See if that works
- donsjgm8 years agoJunior
Mark,
It loaded just fine! :)
I'm caught for time right now and haven't gotten to check it out completely
Clearly a case of less is more ( might not be the same for older OSs)
It will be interesting to see if /LaunchAgents is the right directory but after proofing it if it performs as expected we need to author the solution and give it to the community.
I'll do some testing with it as soon as possible.
NICE WORK 👍
Don :)
- MarkJFine8 years agoProfessor
Apparently LaunchAgents gives you more flexibility for running things like crons that don't need a GUI, whereas LaunchDaemons is a bit more restrictive.
I'm unsure if the filename had anything to do with it. I just made sure it was the same or close to what the Label was.
Also, aparently ownership and persmissions are important depending upon where it goes:
1. If under ~/Library, the permissions have to be set with you as owner and unaccessible by group or world.2. If under /Library or /System/Library, the permissions have to be set as root, similarly using 600 or 400.
Cool, so, on to the next phase!
- donsjgm8 years agoJunior
I was also able to load it under LaunchDaemons.
I'm not sure but I'm under the impression that LaunchAgents require user interaction.
In either case it loads and unloads without a problem.
I'm unable to catch a PID using both the activity monitor and the console.
I changed the StartCalenderInterval and watched as it passed the time however currently there are no updates pending.
In what little time I had been looking into it, before I saw you revision, I had come across the possibility that it might need some form of the following:
<key>com.apple.private.AuthorizationServices</key>
<array>
<string>system.download.apple-software</string><string>com.apple.softwareupdate.manage_daemon</string>
</array>Regardless, thus far everything seems great. Might have to add the KeepAlive or wait until there's an update. (experimentation needed)
I can see in the logs where it loads and unloads but the fact that it's not showing a PID makes me think although it's loading, it's not running.
- MarkJFine8 years agoProfessor
Dunno. May be how it spawns the process. Should be something in the log if there's a spawning error.
Been busy with other things, but will test it more over the weekend.
- donsjgm8 years agoJunior
Hey Mark,
I've been waiting for an update to be available to "smoke test" it. For a while it seemed they were coming pretty often.
I just got notice of an available update (this evening) but I won't be able to check it out until the weekend.
I have seen that there are (supposedly) some settings in the GUI that have to be changed from my regular settings. With that, I'm first going to try the version you sent without modifications and we'll see what happens.
- MarkJFine8 years agoProfessor
I've had a couple in the past few days (Xcode Command Line Tools, OneNote), but forgot to try it. Been so busy it completely slipped my mind.
- donsjgm8 years agoJunior
Hey Mark,
I got the plist to run but haven't gotten sucessfull results yet.
Changing "download" to "update" did the trick however I thus far am getting the following message in the console:
Service exited with abnormal code: 1
It's being sort of ornery. Kind of looking for a missing or incorrect symbol in assembly code. Lol
I'm not able to give it full time attention so the process is taking longer than I initially thought but my limited sucess has convinced me that it can be done.
- MarkJFine8 years agoProfessor
tbh, I haven't seen enough actual updates for it to work.
Related Content
- 2 years ago
- 4 years ago
- 8 years ago