why download only for apt-get cron job - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T00:54:49Zhttp://stackoverflow.com/feeds/question/283263http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/283263/why-download-only-for-apt-get-cron-job2why download only for apt-get cron jobcontagious2008-11-12T07:43:26Z2008-11-13T08:26:13Z
<p>I'm putting a crontab job for updating with apt-get once a day (running Debian Lenny, there are updates almost daily). But almost all examples i've seen of this cron job invoke the -d flag. </p>
<p>This elicits 4 questions:</p>
<ul>
<li>Why should I only download the
packages and not install them?</li>
<li>Doesn't this defeat the purpose of
running it automatically?</li>
<li>Don't I have to go in and actually
install the updates later?</li>
<li>Is it safe for me to run the cron
job without the -d flag?</li>
</ul>
http://stackoverflow.com/questions/283263/why-download-only-for-apt-get-cron-job/283282#2832825Answer by Samat Jain for why download only for apt-get cron jobSamat Jain2008-11-12T08:03:19Z2008-11-12T08:14:52Z<p>You're operating on a faulty assumption--neither apt-get (nor aptitude) are meant to be run automatically, nor is the Debian packaging system really designed for it. That's why the tools make it difficult.</p>
<p>What happens when a software upgrade breaks because you forgot to update a configuration file? This has happened to me in the past (apache2), and some with severe consequences that prevented the machine from booting (mdadm). What happens when the software brings in dependencies you don't want (i.e. bringing in the entire X11 windowing system, on a server)? Etc, etc...</p>
<p>If you're worried about installing security upgrades automatically, you want to look at the <a href="http://packages.debian.org/lenny/unattended-upgrades" rel="nofollow">unattended-upgrades</a> package. It will download and install packages from the security archive for you.</p>
http://stackoverflow.com/questions/283263/why-download-only-for-apt-get-cron-job/286517#2865171Answer by Darren Greaves for why download only for apt-get cron jobDarren Greaves2008-11-13T08:26:13Z2008-11-13T08:26:13Z<p>I run a Ubuntu server and have the following run as root once a week.</p>
<pre><code>/usr/bin/apt-get update && /usr/bin/apt-get -s -u upgrade
</code></pre>
<p>The '-s' option tells apt-get to "simulate" updating the packages but not to actually do anything.<br />
The net effect is I get an email (via cron) telling me what new packages are available.</p>
<p>I can then log in and run it by hand, taking the necessary precautions (backups etc) beforehand.</p>
<p>Hope this helps.</p>