# == Class: openstack_project::server
#
# A server that we expect to run for some time
class openstack_project::server (
  $pin_puppet                = '3.',
  $ca_server                 = undef,
  $pypi_index_url            = 'https://pypi.python.org/simple',
) {

  # Include ::apt while we work on the puppet->ansible transition
  if ($::osfamily == 'Debian') {
    include ::apt
  }

}