allow overwrite flags

This commit is contained in:
Chris Lu 2020-05-21 22:19:06 -07:00
parent 49973333f2
commit 232b0f0e6e

View file

@ -4,27 +4,27 @@ case "$1" in
'master') 'master')
ARGS="-mdir=/data -volumePreallocate -volumeSizeLimitMB=1024" ARGS="-mdir=/data -volumePreallocate -volumeSizeLimitMB=1024"
exec /usr/bin/weed $@ $ARGS exec /usr/bin/weed $ARGS $@
;; ;;
'volume') 'volume')
ARGS="-dir=/data -max=0" ARGS="-dir=/data -max=0"
exec /usr/bin/weed $@ $ARGS exec /usr/bin/weed $ARGS $@
;; ;;
'server') 'server')
ARGS="-dir=/data -volume.max=0 -master.volumePreallocate -master.volumeSizeLimitMB=1024" ARGS="-dir=/data -volume.max=0 -master.volumePreallocate -master.volumeSizeLimitMB=1024"
exec /usr/bin/weed $@ $ARGS exec /usr/bin/weed $ARGS $@
;; ;;
'filer') 'filer')
ARGS="" ARGS=""
exec /usr/bin/weed $@ $ARGS exec /usr/bin/weed $ARGS $@
;; ;;
's3') 's3')
ARGS="-domainName=$S3_DOMAIN_NAME -key.file=$S3_KEY_FILE -cert.file=$S3_CERT_FILE" ARGS="-domainName=$S3_DOMAIN_NAME -key.file=$S3_KEY_FILE -cert.file=$S3_CERT_FILE"
exec /usr/bin/weed $@ $ARGS exec /usr/bin/weed $ARGS $@
;; ;;
'cronjob') 'cronjob')