diff options
author | David Kalnischkies <david@kalnischkies.de> | 2017-05-28 17:44:11 +0200 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2017-06-28 19:18:47 +0200 |
commit | 24b5bc4e41ed527799a9fa01dec9c29294d0a3f2 (patch) | |
tree | 868ec0ba429d4df96b09a45c2f782c7c49786db3 /apt-private/acqprogress.h | |
parent | ca8da1bf83ecc90ba882520b79c1cda03ee7485d (diff) |
ask for releaseinfo change interactively in apt
If we have a user sitting around we can let 'apt' ask the user for a
confirmation rather than print errors at the end and require the user to
figure out which commandline flags are needed to confirm the changes
non-interactively.
Diffstat (limited to 'apt-private/acqprogress.h')
-rw-r--r-- | apt-private/acqprogress.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apt-private/acqprogress.h b/apt-private/acqprogress.h index 6b6d555b1..196995ac4 100644 --- a/apt-private/acqprogress.h +++ b/apt-private/acqprogress.h @@ -15,7 +15,7 @@ #include <string> #include <iostream> -class APT_PUBLIC AcqTextStatus : public pkgAcquireStatus +class APT_PUBLIC AcqTextStatus : public pkgAcquireStatus2 { std::ostream &out; unsigned int &ScreenWidth; @@ -28,6 +28,7 @@ class APT_PUBLIC AcqTextStatus : public pkgAcquireStatus public: + virtual bool ReleaseInfoChanges(metaIndex const * const LastRelease, metaIndex const * const CurrentRelease, std::vector<ReleaseInfoChange> &&Changes) APT_OVERRIDE; virtual bool MediaChange(std::string Media,std::string Drive) APT_OVERRIDE; virtual void IMSHit(pkgAcquire::ItemDesc &Itm) APT_OVERRIDE; virtual void Fetch(pkgAcquire::ItemDesc &Itm) APT_OVERRIDE; |