[pve-devel] [PATCH v3 manager 2/2] filter unusable lxc mountoptions for rootfs

Oguz Bektas o.bektas at proxmox.com
Thu Jul 11 15:10:01 CEST 2019


On Thu, Jul 11, 2019 at 03:08:30PM +0200, Oguz Bektas wrote:
> disable nodev and noexec per thomas' suggestion[0].
> 
> [0]: https://pve.proxmox.com/pipermail/pve-devel/2019-July/037994.html
> 
> Signed-off-by: Oguz Bektas <o.bektas at proxmox.com>
> ---
> v2 -> v3:
> * change from 'field' to 'var field' to avoid assigning 'window.field'
i mean 'filtered'
> 
>  www/manager6/lxc/MPEdit.js | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/www/manager6/lxc/MPEdit.js b/www/manager6/lxc/MPEdit.js
> index 7689340d..8851c5fc 100644
> --- a/www/manager6/lxc/MPEdit.js
> +++ b/www/manager6/lxc/MPEdit.js
> @@ -58,6 +58,14 @@ Ext.define('PVE.lxc.MountPointInputPanel', {
>  	if (mp.mountoptions) {
>  	    mp.mountoptions = mp.mountoptions.split(';');
>  	}
> +
> +	if (this.confid === 'rootfs') {
> +	    var field = me.down('field[name=mountoptions]');
> +	    var forbidden = ['nodev', 'noexec'];
> +	    var filtered = field.comboItems.filter(e => !forbidden.includes(e[0]));
> +	    field.setComboItems(filtered);
> +	}
> +
>  	me.setValues(mp);
>      },
>  
> -- 
> 2.20.1
> 
> 




More information about the pve-devel mailing list