~ubuntu-branches/ubuntu/trusty/apt/trusty

« back to all changes in this revision

Viewing changes to debian/apt.cron.daily

  • Committer: Package Import Robot
  • Author(s): Michael Vogt
  • Date: 2013-11-01 10:03:06 UTC
  • mfrom: (1.4.73 sid)
  • mto: (1.4.74 sid)
  • mto: This revision was merged to the branch mainline in revision 208.
  • Revision ID: package-import@ubuntu.com-20131101100306-2q5pugg4b93gn9h9
Tags: 0.9.13~exp1
* Improve the API for APT::Upgrade::Upgrade()
* Re-add "Calculating upgrade..." message
* move upgrade releated code into upgrade.{cc,h}
* Move ListUpdate/AquireUpdate into update.{cc,h}
* Add new apt-pkg/install-progress.h with APT::Progress::PackageManager
  progress reporting classes
* Move the status-fd progress reporting out of the pkgDPkgPM class
  and into PackageManagerProgressFd
* Fix reading dpkg --status-fd on reinstalls
* Add new APT::Status-deb822-Fd progress output
* add Acquire::http::Proxy-Auto-Detect to the apt.conf.5 manpage
  (closes: 726597)
* Fix detection when multiarch packages are reported by dpkg as
  disappeared Packages
* test/integration/run-tests: output the failed test names
* Code Cleanup in pkgDPkgPM
* prepare next ABI via #if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13)
* add new pid_t ExecFork(std::set<int> KeepFDs)
* Avoid flickering when "apt-get -o DpkgPM::Progress-Fancy=1" is use
* use sysconf(_SC_OPEN_MAX) in ExecFork()

Show diffs side-by-side

added added

removed removed

Lines of Context:
375
375
check_power || exit 0
376
376
 
377
377
# check if we can lock the cache and if the cache is clean
378
 
if which apt-get >/dev/null && ! eval apt-get check -f $XAPTOPT $XSTDERR ; then
 
378
if which apt-get >/dev/null && ! eval apt-get check $XAPTOPT $XSTDERR ; then
379
379
    debug_echo "error encountered in cron job with \"apt-get check\"."
380
380
    exit 0
381
381
fi