fuel-library/deployment/puppet/cobbler/manifests/profile/centos63-x86_64.pp

72 lines
2.2 KiB
Puppet

# Copyright 2013 Mirantis, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
#
#
# This class is intended to make cobbler profile centos63-x86_64.
#
# [distro] The name of cobbler distro to bind profile to.
#
# [ks_repo] Repository definitions (array of hashes with name and url keys)
# where RPM packages are available which are not available in the main
# kickstart url.
#
# [ks_system_timezone] System timezone on installed system.
#
# [ks_encrypted_root_password] Hash of the root password on installed system.
class cobbler::profile::centos63-x86_64(
$distro = "centos63-x86_64",
$ks_repo = [
{
"name" => "Puppet",
"url" => "http://yum.puppetlabs.com/el/6/products/x86_64",
},
{
"name" => "Stanford",
"url" => "http://mirror.stanford.edu/yum/pub/centos/6.3/os/x86_64",
}],
$ks_system_timezone = "America/Los_Angeles",
# default password is 'r00tme'
$ks_encrypted_root_password = "\$6\$tCD3X7ji\$1urw6qEMDkVxOkD33b4TpQAjRiCeDZx0jmgMhDYhfB9KuGfqO9OcMaKyUxnGGWslEDQ4HxTw7vcAMP85NxQe61",
) {
Exec {path => '/usr/bin:/bin:/usr/sbin:/sbin'}
case $operatingsystem {
/(?i)(ubuntu|debian|centos|redhat)$/: {
$ks_dir = "/var/lib/cobbler/kickstarts"
}
}
file { "${ks_dir}/centos63-x86_64.ks":
content => template("cobbler/kickstart/centos.ks.erb"),
owner => root,
group => root,
mode => 0644,
} ->
cobbler_profile { "centos63-x86_64":
kickstart => "${ks_dir}/centos63-x86_64.ks",
kopts => $kopts,
distro => $distro,
ksmeta => "",
menu => true,
}
}