summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2014-11-09 00:21:52 +0100
committerGuillem Jover <guillem@debian.org>2015-02-08 17:15:17 +0100
commit279a55c16156f8f9a232481e732fe900c07ae7a9 (patch)
tree057f7203638b28f5a9d565a5482ac88506d399dc /src
parent68c4b0b5268614a0d6a710627e8e42f90b7208b1 (diff)
downloaddpkg-279a55c16156f8f9a232481e732fe900c07ae7a9.tar.gz
dpkg: Add comment describing pkg_istobe values
Diffstat (limited to 'src')
-rw-r--r--src/main.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.h b/src/main.h
index 1f84cca90..d319af9b3 100644
--- a/src/main.h
+++ b/src/main.h
@@ -31,10 +31,15 @@ struct filenamenode_queue;
struct filenamenode;
enum pkg_istobe {
+ /** Package is to be left in a normal state. */
PKG_ISTOBE_NORMAL,
+ /** Package is to be removed. */
PKG_ISTOBE_REMOVE,
+ /** Package is to be installed, configured or triggered. */
PKG_ISTOBE_INSTALLNEW,
+ /** Package is to be deconfigured. */
PKG_ISTOBE_DECONFIGURE,
+ /** Package is to be checked for Pre-Depends satisfiability. */
PKG_ISTOBE_PREINSTALL,
};