Last active
September 18, 2024 04:54
-
-
Save stokito/5b30d1fb8641bdeefa93f6ec613fa72b to your computer and use it in GitHub Desktop.
debian lintian problems fixes:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
**maintainer-script-needs-depends-on-adduser** | |
You postinst script creates a user by using the adduser command that technically may not be installed yet in the system | |
**Fix:** | |
Add to the `debian/control`: | |
Pre-Depends: adduser | |
**duplicate-conffile** | |
Files under /etc are configuration files but you also created the `debian/conffiles` where listed them too. | |
This is not needed. | |
**Fix:** | |
Remove the `debian/conffiles` | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment