in reply to Perl <-> debian apt interface

So far the only solution I can find is to use system() to call apt-get with the -y option to turn off prompts.

You are right to hesitate to do this. There are a number of very worthwhile reasons to avoid such a technique, in general.

However, in this case...

Almost all the reasons to avoid calling system binaries involve one of two factors: portability or efficiency. Neither matters here.

Portability is utterly unimportant because the whole point of what you want to do is centered on one specific OS and one specific distribution. Portability is not involved.

Efficiency is similarly non-critical. Shelling out to a non-Perl process takes extra microseconds, but you're doing it a small handful of times; it won't add up to an extra five seconds, and you're doing that once at install time. It's a non-issue.

So don't waste time on a more elegant solution; throw your apt-get command in backticks and be done. Perl, according to the first sentence of the Camel, is a language for getting your job done. You can write this script (well, the apt-get part) in five or ten minutes and be done.