Hi,
I'm trying to mount a folder on host in one virtual Container server. I have created the file /etc/vz/conf/109.mount and put this inside:
#!/bin/bash
. /etc/vz/vz.conf
. ${VE_CONFFILE}
SRC=/mnt/disk01
DST=/mnt/disk01
if [ ! -e ${VE_ROOT}${DST} ]; then mkdir -p ${VE_ROOT}${DST}; fi
mount -n -t simfs ${SRC} ${VE_ROOT}${DST} -o ${SRC}
the I try to do it executible:
chmod +x /etc/vz/conf/109.mount
but I only get "chmod: changing permissions of `/etc/pve/local/openvz/109.mount': Function not implemented".
How can I solve this?
I'm using Proxmox 3.3.
I'm trying to mount a folder on host in one virtual Container server. I have created the file /etc/vz/conf/109.mount and put this inside:
#!/bin/bash
. /etc/vz/vz.conf
. ${VE_CONFFILE}
SRC=/mnt/disk01
DST=/mnt/disk01
if [ ! -e ${VE_ROOT}${DST} ]; then mkdir -p ${VE_ROOT}${DST}; fi
mount -n -t simfs ${SRC} ${VE_ROOT}${DST} -o ${SRC}
the I try to do it executible:
chmod +x /etc/vz/conf/109.mount
but I only get "chmod: changing permissions of `/etc/pve/local/openvz/109.mount': Function not implemented".
How can I solve this?
I'm using Proxmox 3.3.