@@ -0,0 +1,114 @@
+## Path: System/YUP2ZLM
+## Description: YUP - "Yum Update Proxy" for SLE 10 Maintenance
+#
+# YUP2ZLM - "Import YUP tree into ZLM 7.2"
+# Copyright (C) 2006,2007 SUSE Linux Products GmbH and Novell Belgium BV
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
+# Base name elements for the patch bundle groups
+YUP2ZLM_PATCH_BUNDLE_BASE_NAME="Patches"
+YUP2ZLM_SEC_PATCH_BUNDLE_EXT="Security"
+YUP2ZLM_REC_PATCH_BUNDLE_EXT="Recommended"
+YUP2ZLM_OPT_PATCH_BUNDLE_EXT="Optional"
+YUP2ZLM_KER_SEC_PATCH_BUNDLE_EXT="Security-kernel"
+YUP2ZLM_KER_NONSEC_PATCH_BUNDLE_EXT="Nonsecurity-kernel"
+
+## Type: string("SLES10","SLED10","SLES10SP1","SLED10SP1")
+#
+# Only supported products are SLES10 and/or SLED10.
+#
+YUP2ZLM_PRODUCTS="SLES10 SLED10"
+
+## Type: string("GA","SP1","SP2")
+#
+# Subversions of product to mirror
+#
+YUP2ZLM_SUBVERSIONS="GA SP1"
+
+## Type: string(i586,ppc,s390x,ia64,x86_64)
+#
+# List of the architectures we are interested in for the products
+#
+YUP2ZLM_ARCHS="i586 x86_64"
+
+# ZLM 7.2 folder where all SLES 10 related patches and patch
+# groups should reside in.
+#
+YUP2ZLM_SLES10_PATCHES_FOLDER="/Patches/Servers"
+
+# ZLM 7.2 folder where all SLED 10 related patches and patch
+# groups should reside in.
+#
+YUP2ZLM_SLED10_PATCHES_FOLDER="/Patches/Desktops"
+
+# Credentials to connect to ZLM 7.2 - you might want to give this
+# file permissions 600.
+#
+YUP2ZLM_ZLMAN_CMD="/usr/bin/zlman -U administrator -P novell"
+
+# Names of the server kinds for which we want to create dedicated
+# patch bundle groups
+#
+YUP2ZLM_SERVER_GROUPS=""
+
+# Names of the desktop kinds for which we want to create
+# dedicated patch bundle groups
+#
+YUP2ZLM_DESKTOP_GROUPS=""
+
+# Environments per machine kind in which you want patches to get
+# loaded. Comma separated.
+#
+YUP2ZLM_ENV_LOAD=""
+
+# Environments per machine kind in which patches should not yet
+# be loaded. Comma separated.
+#
+YUP2ZLM_ENV_NOTLOAD=""
+
+# What the transaction folder should be called
+#
+YUP2ZLM_TRANS_FOLDER="Committed"
+
+## Type: boolean
+## Default: "true"
+#
+# Include patch rpms
+#
+YUP2ZLM_INCLUDE_PATCH_RPMS="true"
+
+## Type: boolean
+## Default: "false"
+#
+# Include folder and bundle group creation process
+#
+YUP2ZLM_PERFORM_SETUP="true"
+
+## Type: boolean
+## Default: "true"
+#
+# Include patch mirroring process
+#
+YUP2ZLM_PERFORM_MIRROR="true"
+
+## Type: boolean
+## Default: "true"
+#
+# Split kernel patches per kernel category. Multi-kernel bundles
+# will have "upgrade/freshen", single-kernel bundles "install".
+#
+YUP2ZLM_SPLIT_KERNEL="true"
|