name "planet"
description "Role applied to all planet servers"

default_attributes(
  :accounts => {
    :users => {
      :bretth => { :status => :user },
      :planet => {
        :status => :administrator,
        :members => [ :bretth ]
      }
    }
  },
  :rsyncd => {
    :modules => {
      :planet => {
        :comment => "Semi public planet.osm archive",
        :path => "/store/planet",
        :read_only => true,
        :write_only => false,
        :list => true,
        :uid => "nobody",
        :gid => "nogroup",
        :transfer_logging => false,
        :exclude => [ ".*" ],
        :max_connections => 10,
        :ignore_errors => true,
        :ignore_nonreadable => true,
        :timeout => 3600,
        :refuse_options => [ "checksum" ]
      }
    }
  },
  :apache => {
    :mpm => "event",
    :keepalive => true,
    :event => {
      :server_limit => 20,
      :max_clients => 1000,
      :threads_per_child => 50
    }
  }
)

run_list(
  "recipe[planet]",
  "recipe[planet::replication]",
  "recipe[nfs::server]",
  "recipe[rsyncd]"
)
