From a5a9890fbea182718d324974671457fef63d2f86 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Tue, 5 Apr 2022 11:27:51 +0200 Subject: [PATCH] Fix some typos (found by codespell) (#613) Signed-off-by: Stefan Weil --- discourse-doctor | 2 +- templates/import/phpbb3.template.yml | 2 +- templates/import/vanilla.template.yml | 2 +- templates/postgres.13.template.yml | 2 +- templates/postgres.template.yml | 2 +- templates/web.template.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/discourse-doctor b/discourse-doctor index 2109440..0c7ea18 100755 --- a/discourse-doctor +++ b/discourse-doctor @@ -327,7 +327,7 @@ print_done() { log "Publicly available log not generated." fi fi - # The following is not in the web log file since it was copied above, which seems corect + # The following is not in the web log file since it was copied above, which seems correct log log "You can examine the output of this script with " log "LESS=-Ri less $LOG_FILE" diff --git a/templates/import/phpbb3.template.yml b/templates/import/phpbb3.template.yml index b408a1c..9a3024f 100644 --- a/templates/import/phpbb3.template.yml +++ b/templates/import/phpbb3.template.yml @@ -22,7 +22,7 @@ hooks: path: /etc/mysql/conf.d/import.cnf contents: | [mysqld] - # disable InnoDB since it is extremly slow in Docker container + # disable InnoDB since it is extremely slow in Docker container default-storage-engine=MyISAM default-tmp-storage-engine=MyISAM innodb=OFF diff --git a/templates/import/vanilla.template.yml b/templates/import/vanilla.template.yml index 567f2cb..78802a2 100644 --- a/templates/import/vanilla.template.yml +++ b/templates/import/vanilla.template.yml @@ -22,7 +22,7 @@ hooks: path: /etc/mysql/conf.d/import.cnf contents: | [mysqld] - # disable InnoDB since it is extremly slow in Docker container + # disable InnoDB since it is extremely slow in Docker container default-storage-engine=MyISAM default-tmp-storage-engine=MyISAM innodb=OFF diff --git a/templates/postgres.13.template.yml b/templates/postgres.13.template.yml index 1414629..a5f13b8 100644 --- a/templates/postgres.13.template.yml +++ b/templates/postgres.13.template.yml @@ -64,7 +64,7 @@ run: required=$(($(du -sb /shared/postgres_data | awk '{print $1}') * 2)) if [ "$free_disk" -lt "$required" ]; then - echo "WARNING: Upgrading PostgresSQL would require an addtional $(numfmt --to=si $(($required - $free_disk))) of disk space" + echo "WARNING: Upgrading PostgreSQL would require an additional $(numfmt --to=si $(($required - $free_disk))) of disk space" echo "Please free up some space, or expand your disk, before continuing." echo '' echo 'To avoid upgrading change "templates/postgres.template.yml" TO "templates/postgres.12.template.yml" in containers/app.yml' diff --git a/templates/postgres.template.yml b/templates/postgres.template.yml index 1414629..a5f13b8 100644 --- a/templates/postgres.template.yml +++ b/templates/postgres.template.yml @@ -64,7 +64,7 @@ run: required=$(($(du -sb /shared/postgres_data | awk '{print $1}') * 2)) if [ "$free_disk" -lt "$required" ]; then - echo "WARNING: Upgrading PostgresSQL would require an addtional $(numfmt --to=si $(($required - $free_disk))) of disk space" + echo "WARNING: Upgrading PostgreSQL would require an additional $(numfmt --to=si $(($required - $free_disk))) of disk space" echo "Please free up some space, or expand your disk, before continuing." echo '' echo 'To avoid upgrading change "templates/postgres.template.yml" TO "templates/postgres.12.template.yml" in containers/app.yml' diff --git a/templates/web.template.yml b/templates/web.template.yml index 8fc2f8f..8889160 100644 --- a/templates/web.template.yml +++ b/templates/web.template.yml @@ -265,7 +265,7 @@ run: # move state out of the container this fancy is done to support rapid rebuilds of containers, # we store anacron and logrotate state outside the container to ensure its maintained across builds - # later move this snipped into an intialization script + # later move this snipped into an initialization script # we also ensure all the symlinks we need to /shared are in place in the correct structure # this allows us to bootstrap on one machine and then run on another - file: -- 2.25.1