bigbluebutton-Github/build/packages-template/bbb-html5/mongod_start_pre.sh

17 lines
375 B
Bash
Raw Normal View History

2021-08-13 18:53:18 +08:00
#!/bin/bash
rm -rf /mnt/mongo-ramdisk/*
mkdir -p /mnt/mongo-ramdisk
if /bin/findmnt | grep -q "/mnt/mongo-ramdisk"; then
umount /mnt/mongo-ramdisk/
fi
if [ ! -f /.dockerenv ]; then
mount -t tmpfs -o size=512m tmpfs /mnt/mongo-ramdisk
fi
if id mongod &> /dev/null; then
chown -R mongod:mongod /mnt/mongo-ramdisk
else
chown -R mongodb:mongodb /mnt/mongo-ramdisk
fi