New update available

openmediavault 5.5.10

  • Update locales.
  • Fix bugs in date/time page. The field ‘Time servers’ was not marked as required when ‘Use NTP server’ was enabled. The field ‘Allowed clients’ was marked as required when ‘Use NTP server’ was disabled.
  • Fix bug in omv-firstaid when setting a static IPv6 address.
  • Added the environment variables ‘OMV_AVAHIDAEMON_ALLOW_INTERFACES’, ‘OMV_AVAHIDAEMON_ALLOW_POINT_TO_POINT’ and ‘OMV_AVAHIDAEMON_ENABLE_REFLECTOR’ to customize the Avahi/Zeroconf configuration for VPN.
  • File systems will not be mounted with the ‘noexec’ option anymore. Existing mount point configurations are not migrated.
  • Issue #800: Quotas are not configured after creating a file system.
  • Issue #810: Added the ‘OMV_CHRONY_SERVER_POOL_DIRECTIVE’ environment variable to configure the NTP server directive in chrony.conf. Default is ‘server’.

New updates available

openmediavault 5.5.9

  • Update locales.
  • Issue #784: Use UDEV over /sys to get model and vendor information.
  • Issue #789: Read-only users or groups are not used in proftpd config.

openmediavault-snmp 5.0.2

  • Update locales.
  • Fix bug in snmpd.conf when using SNMP v3.

OMV6 – First dashboard impressions

Adding custom dashboard widgets will be as easy as possible. Simply drop a JSON file to a specific directory and run a CLI command.

Examples:

{
	"id": "e2ed9a54-df38-11ea-8976-7786e66d5f43",
	"type": "rrd",
	"title": "CPU usage",
	"rrd": {
		"name": "cpu-0-hour.png"
	}
}
{
	"id": "1dc0ac9a-df14-11ea-8342-6fcac5f2e571",
	"title": "File Systems",
	"type": "datatable",
	"datatable": {
		"columns": [
			{
				"name": "Device",
				"prop": "devicefile",
				"flexGrow": 1,
				"sortable": true
			},
			{
				"name": "Label",
				"prop": "label",
				"flexGrow": 1,
				"sortable": true,
				"hidden": true
			},
			{
				"name": "Total",
				"prop": "size",
				"flexGrow": 1,
				"sortable": true,
				"cellTemplateName": "template",
				"cellTemplateConfig": "{{ size | tobytes | binaryunit | notavailable(\"-\") }}"
			},
			{
				"name": "Available",
				"prop": "available",
				"flexGrow": 1,
				"sortable": true,
				"cellTemplateName": "template",
				"cellTemplateConfig": "{{ available | tobytes | binaryunit | notavailable(\"-\") }}"
			},
			{
				"name": "Used",
				"prop": "used",
				"flexGrow": 1,
				"sortable": true,
				"cellTemplateName": "template",
				"cellTemplateConfig": "{{ used | tobytes | binaryunit | notavailable(\"-\") }}"
			}
		],
		"store": {
			"proxy": {
				"service": "FileSystemMgmt",
				"get": {
					"method": "enumerateFilesystems"
				}
			}
		},
		"sorters": [
			{
				"dir": "asc",
				"prop": "devicefile"
			}
		]
	}
}

New update available

openmediavault 5.5.8

  • Issue #782: Make attribute ‘slaves’ optional in datamodel ‘conf.system.network.interface’.

New update available

openmediavault 5.5.7

  • Update locales.
  • Install helper script which is used by the UDEV rules database which fixes the problem of some USB PATA/SATA bridge controllers.