diff options
| author | Patrick Spek <p.spek@tyil.nl> | 2024-08-07 22:23:48 +0200 |
|---|---|---|
| committer | Patrick Spek <p.spek@tyil.nl> | 2024-08-07 23:01:30 +0200 |
| commit | 64fc021645506405a7cc4c872f4653906621b94e (patch) | |
| tree | de6d20b9e6299a891258d9ecd7f6cc9e96d18e88 | |
| parent | 96e6c911a557ae3a9ec7832e077219eddc1fac28 (diff) | |
| download | cgit-64fc021645506405a7cc4c872f4653906621b94e.tar.gz cgit-64fc021645506405a7cc4c872f4653906621b94e.tar.bz2 | |
Sort env output
| -rw-r--r-- | entrypoint.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/entrypoint.sh b/entrypoint.sh index 3182e98..2a43a24 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -13,8 +13,8 @@ export HOSTNAME="${HOSTNAME:-"$(hostname -f)"}" export HTTPD_LISTEN_PORT="${HTTPD_LISTEN_PORT:-"80"}" # Output debugging info -env | grep '^CGITRC_' -env | grep '^HTTPD_' +env | grep '^CGITRC_' | sort +env | grep '^HTTPD_' | sort # Turn templates into proper files envsubst \ |
