2017-11-20 22:59:01 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-11-20 23:30:58 +00:00
|
|
|
set -e
|
2017-11-20 22:59:01 +00:00
|
|
|
|
|
|
|
if [ "$1" = 'zammad-nfs' ]; then
|
|
|
|
echo "create & mount tmpfs"
|
|
|
|
mkdir -p ${NFS_DIR}
|
|
|
|
chmod 777 ${NFS_DIR}
|
|
|
|
mount -t tmpfs -o size=${TMPFS_SIZE} none ${NFS_DIR}
|
|
|
|
|
|
|
|
echo "create nfs exports"
|
|
|
|
echo "# NFS Export for Zammad" > /etc/exports
|
|
|
|
echo "${NFS_DIR} *(rw,sync,no_subtree_check,fsid=0,no_root_squash)" >> /etc/exports
|
|
|
|
|
|
|
|
exec runsvdir /etc/sv
|
|
|
|
fi
|