mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-28 06:20:14 +00:00
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[@]}" "$@"
|