up vote 0 down vote favorite
share [g+] share [fb]

Maybe that's more of a Linux question than an Adobe Air one, but there you go: I have an AIR 2 app that does auto-update in the background, with no need for user interaction. It uses Air's own ApplicationUpdater framework (the one that doesn't require a UI) - all goes well until the package gets downloaded and needs to be installed - at that point, the Air Installer prompts for SUDO password and won't proceed without some user interaction.

Is there any way to circumvent/avoid that?

link|improve this question
feedback

2 Answers

You could do that by rolling your own updating mechanism. Is not really that difficult, if you plan it correctly you don't even need to close the app.

We did so for an internal project, where we use git. Since I guess you can't rely on Git being available on the user's machine, you could check out the server, download a zip file, uncompress it and replace the contents of your app.

AIR doesn't sign or checksum the files it installs, you can safely replace them and re-load the app without problems.

HTH,

J

link|improve this answer
I'd rather rely on Air's own mechanism for practical reasons - I started with some custom updating mechanism, but using Air framework would make it so much easier... – herval Jul 30 '10 at 21:49
Maybe so, but unless someone comes up with a no-sudo option, I think you'll be forced to roll your own, I'm afraid. – Zárate Jul 31 '10 at 8:12
feedback

I solved this by adding a rule to the sudoers file (/etc/sudoers)

<username> ALL=(root) NOPASSWD: /tmp/air.*/setup

This rule can enable the update to all users

ALL ALL=(root) NOPASSWD: /tmp/air.*/setup

Note that it could lead to some security issues but I think if you are going to use this as a Linux Kiosk it's going to work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.