diff options
author | David Kalnischkies <david@kalnischkies.de> | 2016-06-06 17:58:00 +0200 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2016-06-27 11:57:12 +0200 |
commit | 8d1cb6da6e21302c654da3f09de3975af7e4a11f (patch) | |
tree | eb859b40742234e02d00f44f1b26702c538220eb /apt-pkg/edsp.h | |
parent | 91abb30f1c46287d386b646cef8cb42eadcaa250 (diff) |
eipp: add Allow-Temporary-Remove-of-Essentials
A rather special need option, but the internal planer supports this and
we have a testcase for it & sometimes it is hit (as a bug through). The
option itself mostly serves as a reminder for implementors that they
should be careful with removes and especially temporary removes if they
perform any.
Diffstat (limited to 'apt-pkg/edsp.h')
-rw-r--r-- | apt-pkg/edsp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apt-pkg/edsp.h b/apt-pkg/edsp.h index e1ffdf598..4adfc95e9 100644 --- a/apt-pkg/edsp.h +++ b/apt-pkg/edsp.h @@ -245,6 +245,7 @@ namespace EIPP /*{{{*/ { IMMEDIATE_CONFIGURATION_ALL = (1 << 0), /*!< try to keep the least amount of packages unconfigured as possible at all times */ NO_IMMEDIATE_CONFIGURATION = (1 << 1), /*!< do not perform immediate configuration at all */ + ALLOW_TEMPORARY_REMOVE_OF_ESSENTIALS = (1 << 2), /*!< just as the name suggests, very special case and dangerous! */ }; } |