12345678910111213141516171819202122232425 |
- #ALPM-hook file to block the installation of Third Party Package Managers
- [Trigger]
- Operation = Install
- Operation = Upgrade
- Type = Package
- # Enumerate offending packages below
- Target = python-pip
- Target = wesnoth
- Target = openttd
- Target = rubygems
- Target = npm
- Target = nuget
- [Action]
- Description = Warn user about Third Party Package Managers
- Depends = coreutils
- When = PreTransaction
- NeedsTargets
- Exec = /usr/bin/TPPMwarn
- AbortOnFail
|