* @license https://files.froxlor.org/misc/COPYING.txt GPLv2 */ return [ 'groups' => [ 'crond' => [ 'title' => lng('admin.cronsettings'), 'icon' => 'fa-solid fa-clock-rotate-left', 'advanced_mode' => true, 'fields' => [ 'system_cronconfig' => [ 'label' => lng('serversettings.system_cronconfig'), 'settinggroup' => 'system', 'varname' => 'cronconfig', 'type' => 'text', 'string_type' => 'file', 'default' => '/etc/cron.d/froxlor', 'save_method' => 'storeSettingField' ], 'system_croncmdline' => [ 'label' => lng('serversettings.system_croncmdline'), 'settinggroup' => 'system', 'varname' => 'croncmdline', 'type' => 'text', 'default' => '/usr/bin/nice -n 5 /usr/bin/php -q', 'save_method' => 'storeSettingField' ], 'system_crondreload' => [ 'label' => lng('serversettings.system_crondreload'), 'settinggroup' => 'system', 'varname' => 'crondreload', 'type' => 'text', 'default' => '/etc/init.d/cron reload', 'save_method' => 'storeSettingField' ], 'system_cron_allowautoupdate' => [ 'label' => lng('serversettings.system_cron_allowautoupdate'), 'settinggroup' => 'system', 'varname' => 'cron_allowautoupdate', 'type' => 'checkbox', 'default' => false, 'save_method' => 'storeSettingField' ] ] ] ] ];