Update APP_TIMEZONE

This commit is contained in:
LinuxSquare 2024-11-09 21:37:45 +01:00
parent 52af9c1f92
commit b0d8d66f82

View file

@ -1,7 +1,7 @@
PREFIX ?= /usr PREFIX ?= /usr
SHARE_DIR=$(PREFIX)/share SHARE_DIR=$(PREFIX)/share
APP_TIMEZONE=$(shell readlink /etc/localtime | cut -d/ -f5-) APP_TIMEZONE=$(shell readlink /etc/localtime | awk -F'/' '{print $(NF-1)"/"$(NF)}')
MYSQL_PASSWORD=$(shell head /dev/urandom | tr -dc 'A-Za-z0-9!?,.$%&+-:<=>@_' | head -c32) MYSQL_PASSWORD=$(shell head /dev/urandom | tr -dc 'A-Za-z0-9!?,.$%&+-:<=>@_' | head -c32)
MYSQL_ROOT_PASSWORD=$(shell head /dev/urandom | tr -dc 'A-Za-z0-9!?,.$%&+-:<=>@_' | head -c32) MYSQL_ROOT_PASSWORD=$(shell head /dev/urandom | tr -dc 'A-Za-z0-9!?,.$%&+-:<=>@_' | head -c32)