This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangzhihan-device-manageme…/roles/minio/templates/minio_dmn.sh.j2

9 lines
199 B
Plaintext
Raw Normal View History

2020-01-17 15:35:48 +08:00
#!/bin/bash
while [ 1 ];
do
./minio server --address :9090 {{ minio.data_dir }} >> ./minio.log 2>&1
echo program crashed, restart at `date +"%w %Y/%m/%d, %H:%M:%S"` >> RESTART.log
sleep 30
done