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.8 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=1155307611.42 36 distro_version="3.8" 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.8 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 nss_db-compat sendmail-doc qt-config" 48 delta_desktop_rpms="$delta_server_rpms \ 49 expectk \ 50 seamonkey \ 51 seamonkey-chat \ 52 seamonkey-mail \ 53 seamonkey-nspr \ 54 seamonkey-nss \ 55 tcl-html \ 56 tcllib" 57 delta_developer_rpms="$delta_desktop_rpms \ 58 gd-progs \ 59 freetype-demos \ 60 freetype-utils \ 61 glibc-debug \ 62 irb \ 63 python-docs \ 64 ruby-docs \ 65 ruby-tcltk \ 66 seamonkey-dom-inspector \ 67 seamonkey-js-debugger \ 68 seamonkey-devel \ 69 seamonkey-nspr-devel \ 70 seamonkey-nss-devel" 71 delta_all_rpms="$delta_developer_rpms emacs-nox" 72 73 # Define the final cluster lists for the installer 74 distro_miniroot_rpms="$common_miniroot_rpms $delta_miniroot_rpms" 75 distro_core_rpms="$common_core_rpms $delta_core_rpms" 76 distro_server_rpms="$common_server_rpms $delta_server_rpms" 77 distro_desktop_rpms="$common_desktop_rpms $delta_desktop_rpms" 78 distro_developer_rpms="$common_developer_rpms $delta_developer_rpms" 79 distro_all_rpms="$common_all_rpms $delta_all_rpms"