mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-10 09:51:02 +01:00
10 lines
225 B
Bash
Executable File
10 lines
225 B
Bash
Executable File
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
set -e
|
|
|
|
mkdir -p /config/fonts
|
|
mkdir -p /config/postgres
|
|
mkdir -p /config/postgres/pg_stat_tmp
|
|
chown -R postgres:postgres /config/postgres
|
|
chmod -R 0700 /config/postgres
|