diff options
author | Michael Vogt <mvo@debian.org> | 2014-01-17 07:48:43 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-01-17 07:48:43 +0100 |
commit | 82e7f817a434e29df9ec6fbf19acfd8e7cd890e5 (patch) | |
tree | df72368ef295a7682c9cf19369493c8d7358d474 /apt-private/private-cmndline.cc | |
parent | 2a79257e96010318c4bc6d2f2e3e9c475e5bf445 (diff) |
add apt upgrade --dist
Diffstat (limited to 'apt-private/private-cmndline.cc')
-rw-r--r-- | apt-private/private-cmndline.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apt-private/private-cmndline.cc b/apt-private/private-cmndline.cc index d6d7bca64..cbb40d42e 100644 --- a/apt-private/private-cmndline.cc +++ b/apt-private/private-cmndline.cc @@ -230,6 +230,11 @@ bool addArgumentsAPT(std::vector<CommandLine::Args> &Args, char const * const Cm addArg('v', "verbose", "APT::Cmd::List-Include-Summary", 0); addArg('a', "all-versions", "APT::Cmd::All-Versions", 0); } + else if (CmdMatches("upgrade")) + { + // FIXME: find a better term + addArg(0,"dist","APT::Cmd::Dist-Upgrade", CommandLine::Boolean); + } else if (addArgumentsAPTGet(Args, Cmd) || addArgumentsAPTCache(Args, Cmd)) { // we have no (supported) command-name overlaps so far, so we call |