summaryrefslogtreecommitdiff
path: root/src/force.h
AgeCommit message (Collapse)AuthorFilesLines
2019-02-23dpkg: Add new option --refuse-security-mac to control SELinuxGuillem Jover1-0/+1
This new option works in both dpkg and dpkg-statoverride. And dpkg will pass it to its children, which means dpkg-statoverride called from a maintainer script will automatically pick it up. Ref: #811037
2019-02-23dpkg-statoverride: Switch from --force option to new --force-<thing> optionsGuillem Jover1-0/+2
Deprecate --force option which will be considered an alias for --force-all for now.
2019-02-23dpkg: Switch to set the default force option from the forceinfos arrayGuillem Jover1-0/+2
2019-02-23dpkg: Switch force options from individual variables to bit fieldsGuillem Jover1-25/+41
This makes it easier to generalize to be used by other modules with different force options, and to operate on the force options.
2019-02-23dpkg: Print the current set of enabled force options on --force-helpGuillem Jover1-0/+2
This will make it possible to reason more easily about what is getting enabled.
2019-02-23dpkg: Move force options support into its own fileGuillem Jover1-0/+61
This unifies all force related code in a single file, and will make it possible to use it in other programs.