New Backup Job Config

<%= bootstrap_form_for(@simple_config, url: host_simple_configs_path(@host), layout: :horizontal, label_col: 'col-xs-3', control_col: 'col-xs-8') do |f| %> <%= f.text_field :name %>
<%= f.select :day, options_for_select(SimpleConfiguration::DAY_NAMES, @simple_config.day), require: true %> <%= f.number_field :hour, value: @simple_config.hour, min: 0, max: 23 %> <%= f.number_field :minute, value: @simple_config.minute, min: 0, max: 59 %>
<%= f.select :included_files, options_for_select(SimpleConfiguration::INCLUDED_FILE_OPTIONS, ['/']), { label: 'Fileset' }, multiple: true %>
<%= f.submit 'Create Config', class: 'btn btn-success col-xs-3 col-xs-offset-8' %> <% end %>

Info

This the basic Backup configuration.

Your server is going to receive daily backups, on the selected hour and minute.

The backup plan is optimized to have the minimum overhead to your system, while maintaining a high performance restore system.

The most time consuming backups will be on the selected day.


You can specify a set of files you want to backup from a list of preselected Fileset


You can alter this configuration later on according to your specific needs.