mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-07-22 14:13:06 +00:00
7bf5b18d5e
Signed-off-by: derhagen <2806328+derhagen@users.noreply.github.com>
12 lines
234 B
Bash
12 lines
234 B
Bash
#!/bin/bash
|
|
|
|
echo "Imaginary has started"
|
|
|
|
IMAGINARY_ARGS=(-return-size -max-allowed-resolution 222.2)
|
|
|
|
if [ -n "$IMAGINARY_SECRET" ]; then
|
|
IMAGINARY_ARGS+=(-key "$IMAGINARY_SECRET")
|
|
fi
|
|
|
|
exec imaginary "${IMAGINARY_ARGS[@]}" "$@"
|