1 # 2 # CDDL HEADER START 3 # 4 # The contents of this file are subject to the terms of the 5 # Common Development and Distribution License (the "License"). 6 # You may not use this file except in compliance with the License. 7 # 8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 # or http://www.opensolaris.org/os/licensing. 10 # See the License for the specific language governing permissions 11 # and limitations under the License. 12 # 13 # When distributing Covered Code, include this CDDL HEADER in each 14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 # If applicable, add the following below this CDDL HEADER, with the 16 # fields enclosed by brackets "[]" replaced with your own identifying 17 # information: Portions Copyright [yyyy] [name of copyright owner] 18 # 19 # CDDL HEADER END 20 # 21 # Copyright 2007 Sun Microsystems, Inc. All rights reserved. 22 # Use is subject to license terms. 23 # 24 # ident "%Z%%M% %I% %E% SMI" 25 # 26 27 # 28 # Installation information for the CentOS 3.6 distribution disc set: 29 # 30 # + Serial number (as found in the disc set's .discinfo file) 31 # + Version Name 32 # + Order CDs holding the distribution must be installed in 33 # + MB of disk space required to hold a full install of the distribution 34 # 35 distro_serial=1130453594.8 36 distro_version="3.6" 37 set -A distro_cdorder 1 2 3 38 39 distro_mb_required=500 40 41 # Include the common_<cluster>_* definitions. 42 . ${distro_dir}/rhel_centos_common 43 44 # Define the CentOS 3.6 deltas from the common cluster lists 45 delta_miniroot_rpms=centos-release 46 delta_core_rpms="centos-yumconf centos-yumcache yum" 47 delta_server_rpms=$delta_core_rpms 48 delta_desktop_rpms="$delta_server_rpms \ 49 mozilla \ 50 mozilla-chat \ 51 mozilla-dom-inspector \ 52 mozilla-js-debugger \ 53 mozilla-mail \ 54 mozilla-nspr \ 55 mozilla-nss \ 56 openoffice.org-style-gnome" 57 delta_developer_rpms="$delta_desktop_rpms gd-progs" 58 delta_all_rpms="$delta_developer_rpms emacs-nox" 59 60 # Define the final cluster lists for the installer 61 distro_miniroot_rpms="$common_miniroot_rpms $delta_miniroot_rpms" 62 distro_core_rpms="$common_core_rpms $delta_core_rpms" 63 distro_server_rpms="$common_server_rpms $delta_server_rpms" 64 distro_desktop_rpms="$common_desktop_rpms $delta_desktop_rpms" 65 distro_developer_rpms="$common_developer_rpms $delta_developer_rpms" 66 distro_all_rpms="$common_all_rpms $delta_all_rpms"