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"
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
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
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'
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'
# 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: