1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-04 00:17:06 +00:00
mailinabox/setup
Bastian Bittorf 7334dde805 setup/preflight.sh: fix some minor shellcheck complaints
This file passes shellcheck now without errors.
This paritally fixes #1457 - the former errors where:

$ shellcheck setup/preflight.sh

In setup/preflight.sh line 1:
^-- SC2148 (error): Tips depend on target shell and yours is unknown. Add a shebang or a 'shell' directive.

In setup/preflight.sh line 29:
if [ $TOTAL_PHYSICAL_MEM -lt 490000 ]; then
     ^-----------------^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean:
if [ "$TOTAL_PHYSICAL_MEM" -lt 490000 ]; then

In setup/preflight.sh line 31:
	TOTAL_PHYSICAL_MEM=$(expr \( \( $TOTAL_PHYSICAL_MEM \* 1024 \) / 1000 \) / 1000)
                             ^--^ SC2003 (style): expr is antiquated. Consider rewriting this using $((..)), ${} or [[ ]].
                                        ^-----------------^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean:
	TOTAL_PHYSICAL_MEM=$(expr \( \( "$TOTAL_PHYSICAL_MEM" \* 1024 \) / 1000 \) / 1000)

In setup/preflight.sh line 38:
if [ $TOTAL_PHYSICAL_MEM -lt 750000 ]; then
     ^-----------------^ SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean:
if [ "$TOTAL_PHYSICAL_MEM" -lt 750000 ]; then

For more information:
  https://www.shellcheck.net/wiki/SC2148 -- Tips depend on target shell and y...
  https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...
  https://www.shellcheck.net/wiki/SC2003 -- expr is antiquated. Consider rewr...
2023-12-20 20:11:57 +01:00
..
bootstrap.sh Version 66 2023-12-17 16:31:18 -05:00
dkim.sh Disable OpenDMARC sending reports (#2299) 2023-09-02 07:10:04 -04:00
dns.sh Configure nsd listening interfaces before installing nsd so that it does not interfere with bind9 2022-07-28 14:02:46 -04:00
firstuser.sh Use $(...) notation instead of legacy backtick notation for embedded shell commands 2021-05-03 19:28:23 -04:00
functions.sh Upgrade from PHP 7.2 to 8.0 for Ubuntu 22.04 2022-07-28 14:02:46 -04:00
mail-dovecot.sh chore(setup): Update obsolete chown group syntax (#2202) 2023-01-15 08:25:36 -05:00
mail-postfix.sh Move postgrey database under $STORAGE_ROOT (#2077) 2022-09-24 13:17:55 -04:00
mail-users.sh Disable SMTPUTF8 in Postfix because Dovecot LMTP doesn't support it and bounces messages that require SMTPUTF8 2021-09-24 08:11:36 -04:00
management.sh Fix virtualenv creation reported in #2335 2023-11-28 07:25:50 -05:00
migrate.py Move automatically generated aliases to a separate database table 2021-09-24 08:11:36 -04:00
munin.sh chore(setup): Update obsolete chown group syntax (#2202) 2023-01-15 08:25:36 -05:00
network-checks.sh prevent apt from asking the user any questions 2015-02-13 13:41:52 +00:00
nextcloud.sh Fix checksums in nextcloud.sh (#2293) 2023-09-02 07:07:12 -04:00
preflight.sh setup/preflight.sh: fix some minor shellcheck complaints 2023-12-20 20:11:57 +01:00
questions.sh Amend --always option to all git describe commands (#2275) 2023-09-02 06:59:39 -04:00
spamassassin.sh Implement SPF/DMARC checks, add spam weight to those mails (#1836) 2020-12-25 17:22:24 -05:00
ssl.sh Enable and recommend port 465 for mail submission instead of port 587 (fixes #1849) 2021-05-15 16:42:14 -04:00
start.sh chore(setup): Make sed fingerprint patterns in start.sh be case insensitive (#2201) 2023-01-28 11:12:40 -05:00
system.sh explicitly enable fail2ban which didn't start (#2190) 2023-01-15 08:10:04 -05:00
web.sh Upgrade from PHP 7.2 to 8.0 for Ubuntu 22.04 2022-07-28 14:02:46 -04:00
webmail.sh Upgrade roundcube to 1.6.5 (#2329) 2023-12-04 09:23:36 -05:00
zpush.sh Update zpush.sh to version 2.7.1 (#2315) 2023-10-26 09:04:13 -04:00