diff options
| author | Davi Antônio da Silva Santos <antoniossdavi@gmail.com> | 2023-03-02 02:55:08 +0000 |
|---|---|---|
| committer | Davi Antônio da Silva Santos <antoniossdavi@gmail.com> | 2023-03-04 01:24:15 +0000 |
| commit | b08843cae0ae8aa428a2a654fc48fbd15c65c714 (patch) | |
| tree | fa6418ed4ad4a7221bfcebe14203b2a8806a65b7 /debian/boca-common.postinst | |
| parent | 89d0e395460fe5c0501d95c1223a866a53bdff6b (diff) | |
| download | boca-b08843cae0ae8aa428a2a654fc48fbd15c65c714.tar.gz boca-b08843cae0ae8aa428a2a654fc48fbd15c65c714.zip | |
Abort maintainer scripts on failure
The `set -e` flag has been enabled in the maintainer scripts. This fixes
the Lintian warnings:
* boca-autojudge: maintainer-script-ignores-errors [postinst]
* boca-submission-tools: maintainer-script-ignores-errors [postinst]
* boca-web: maintainer-script-ignores-errors [postinst]
The packages boca-common and boca-db were altered to set the flag as
early as possible in their maintainer scripts.
Diffstat (limited to 'debian/boca-common.postinst')
| -rw-r--r-- | debian/boca-common.postinst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/debian/boca-common.postinst b/debian/boca-common.postinst index 2d47988..9492c78 100644 --- a/debian/boca-common.postinst +++ b/debian/boca-common.postinst @@ -1,10 +1,9 @@ #!/bin/bash +set -e chmod 700 /usr/sbin/boca-config-dbhost chmod 700 /usr/sbin/boca-fixssh -set -e - . /usr/share/debconf/confmodule priority=high |