Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clone_create_ks_distributions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ then
else
echo "No release version passed, trying to find latest kickstart tree path"
KSPATH=$(find /var/satellite/rhn/kickstart/ -name \
ks-rhel-${ARCH}-server-${RHELVERSION}* | sort -n | tail -n1)
ks-rhel-${ARCH}-server-${RHELVERSION}-${RHELVERSION}* | sort -n | tail -n1)
fi
echo_debug "spacecmd -- distribution_create -n ${CLONECH} -p ${KSPATH} \
-b ${CLONECH} -t rhel_${RHELVERSION}"
Expand Down
6 changes: 3 additions & 3 deletions clone_release_from_rhel_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,6 @@ exit_usage()
exit 1
}

# Source some common function definitions
. common_functions.sh

if [ $# -lt 1 ]
then
exit_usage
Expand All @@ -63,6 +60,9 @@ fi
RHELVERSION=$(echo $1 | cut -d. -f1)
UPDATE=$(echo $1 | cut -d. -f2)

# Source some common function definitions
. common_functions.sh

# Base channel naming:
# rhel-x86_64-server-5
# |- rhel-x86_64-server-supplementary-5
Expand Down