#!/bin/sh


copy_target()
{
	local src="$1"
	local dst="$2"
	rsync -auv --copy-unsafe-links "$src" "$dst"
	local name="$(basename "$src")"
	if [ -L "$dst/$name" ]; then
		local link="$(readlink "$dst/$name")"
		[ "$link" != "$name" ] || return 0
		copy_target "$(dirname "$src")/$link" "$dst/$(dirname "$link")/"
	fi
}

# Create the directory for PLESK_18_0_77
echo 'Create the directory for PLESK_18_0_77'
mkdir -p /repo-data/plesk//pool/PSA_18.0.77_19096/

# Getting extensions
echo 'Getting extensions'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/extensions /repo-data/plesk//

# Sync the microupdates directory for PLESK_18_0_77
echo 'Sync the microupdates directory for PLESK_18_0_77'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096//microupdates /repo-data/plesk//pool/PSA_18.0.77_19096/ 1>/dev/null 2>&1

# Sync the examiners directory for PLESK_18_0_77
echo 'Sync the examiners directory for PLESK_18_0_77'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096//examiners /repo-data/plesk//pool/PSA_18.0.77_19096/ 1>/dev/null 2>&1

# Sync the dists directory for PLESK_18_0_77
echo 'Sync the dists directory for PLESK_18_0_77'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096//dists /repo-data/plesk//pool/PSA_18.0.77_19096/ 1>/dev/null 2>&1

# Getting plesk_getkeyinfo.sh
echo 'Getting plesk_getkeyinfo.sh'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096//plesk_getkeyinfo.sh /repo-data/plesk//pool/PSA_18.0.77_19096/ 1>/dev/null 2>&1

# Getting Parallels_Installer
echo 'Getting Parallels_Installer'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/Parallels_Installer /repo-data/plesk//

# Getting Installer
echo 'Getting Installer'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/Installer /repo-data/plesk//

# Getting Plesk config for PLESK_18_0_77/cos7_x86_64
echo 'Getting Plesk config for PLESK_18_0_77/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096//plesk-18.0.77-cos7-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Getting Plesk packages for PLESK_18_0_77/cos7_x86_64
echo 'Getting Plesk packages for PLESK_18_0_77/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096/dist-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Getting Plesk updates for PLESK_18_0_77/cos7_x86_64
echo 'Getting Plesk updates for PLESK_18_0_77/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096/update-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Getting Plesk thirdparty components for PLESK_18_0_77/cos7_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_77/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096/thirdparty-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Getting Plesk extra packages for PLESK_18_0_77/cos7_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_77/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096/extras-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Getting Plesk config for PLESK_18_0_77/deb11.0_x86_64
echo 'Getting Plesk config for PLESK_18_0_77/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096//plesk-18.0.77-deb11.0-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Getting Plesk packages for PLESK_18_0_77/deb11.0_x86_64
echo 'Getting Plesk packages for PLESK_18_0_77/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096/dist-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Getting Plesk updates for PLESK_18_0_77/deb11.0_x86_64
echo 'Getting Plesk updates for PLESK_18_0_77/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096/update-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Getting Plesk thirdparty components for PLESK_18_0_77/deb11.0_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_77/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096/thirdparty-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Getting Plesk extra packages for PLESK_18_0_77/deb11.0_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_77/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096/extras-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/pool/PSA_18.0.77_19096 /repo-data/plesk//debian//

# Getting Plesk config for PLESK_18_0_77/deb12.0_x86_64
echo 'Getting Plesk config for PLESK_18_0_77/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096//plesk-18.0.77-deb12.0-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Getting Plesk packages for PLESK_18_0_77/deb12.0_x86_64
echo 'Getting Plesk packages for PLESK_18_0_77/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096/dist-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Getting Plesk updates for PLESK_18_0_77/deb12.0_x86_64
echo 'Getting Plesk updates for PLESK_18_0_77/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096/update-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Getting Plesk thirdparty components for PLESK_18_0_77/deb12.0_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_77/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096/thirdparty-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Getting Plesk extra packages for PLESK_18_0_77/deb12.0_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_77/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096/extras-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/pool/PSA_18.0.77_19096 /repo-data/plesk//debian//

# Getting Plesk config for PLESK_18_0_77/deb13.0_x86_64
echo 'Getting Plesk config for PLESK_18_0_77/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096//plesk-18.0.77-deb13.0-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Getting Plesk packages for PLESK_18_0_77/deb13.0_x86_64
echo 'Getting Plesk packages for PLESK_18_0_77/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096/dist-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Getting Plesk updates for PLESK_18_0_77/deb13.0_x86_64
echo 'Getting Plesk updates for PLESK_18_0_77/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096/update-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Getting Plesk thirdparty components for PLESK_18_0_77/deb13.0_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_77/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096/thirdparty-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Getting Plesk extra packages for PLESK_18_0_77/deb13.0_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_77/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.77_19096/extras-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.77_19096/

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/pool/PSA_18.0.77_19096 /repo-data/plesk//debian//

# Create the directory for PLESK_18_0_76
echo 'Create the directory for PLESK_18_0_76'
mkdir -p /repo-data/plesk//pool/PSA_18.0.76_18805/

# Getting extensions
echo 'Getting extensions'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/extensions /repo-data/plesk//

# Sync the microupdates directory for PLESK_18_0_76
echo 'Sync the microupdates directory for PLESK_18_0_76'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805//microupdates /repo-data/plesk//pool/PSA_18.0.76_18805/ 1>/dev/null 2>&1

# Sync the examiners directory for PLESK_18_0_76
echo 'Sync the examiners directory for PLESK_18_0_76'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805//examiners /repo-data/plesk//pool/PSA_18.0.76_18805/ 1>/dev/null 2>&1

# Sync the dists directory for PLESK_18_0_76
echo 'Sync the dists directory for PLESK_18_0_76'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805//dists /repo-data/plesk//pool/PSA_18.0.76_18805/ 1>/dev/null 2>&1

# Getting plesk_getkeyinfo.sh
echo 'Getting plesk_getkeyinfo.sh'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805//plesk_getkeyinfo.sh /repo-data/plesk//pool/PSA_18.0.76_18805/ 1>/dev/null 2>&1

# Getting Parallels_Installer
echo 'Getting Parallels_Installer'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/Parallels_Installer /repo-data/plesk//

# Getting Installer
echo 'Getting Installer'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/Installer /repo-data/plesk//

# Getting Plesk config for PLESK_18_0_76/cos7_x86_64
echo 'Getting Plesk config for PLESK_18_0_76/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805//plesk-18.0.76-cos7-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Getting Plesk packages for PLESK_18_0_76/cos7_x86_64
echo 'Getting Plesk packages for PLESK_18_0_76/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805/dist-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Getting Plesk updates for PLESK_18_0_76/cos7_x86_64
echo 'Getting Plesk updates for PLESK_18_0_76/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805/update-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Getting Plesk thirdparty components for PLESK_18_0_76/cos7_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_76/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805/thirdparty-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Getting Plesk extra packages for PLESK_18_0_76/cos7_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_76/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805/extras-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Getting Plesk config for PLESK_18_0_76/deb11.0_x86_64
echo 'Getting Plesk config for PLESK_18_0_76/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805//plesk-18.0.76-deb11.0-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Getting Plesk packages for PLESK_18_0_76/deb11.0_x86_64
echo 'Getting Plesk packages for PLESK_18_0_76/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805/dist-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Getting Plesk updates for PLESK_18_0_76/deb11.0_x86_64
echo 'Getting Plesk updates for PLESK_18_0_76/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805/update-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Getting Plesk thirdparty components for PLESK_18_0_76/deb11.0_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_76/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805/thirdparty-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Getting Plesk extra packages for PLESK_18_0_76/deb11.0_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_76/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805/extras-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/pool/PSA_18.0.76_18805 /repo-data/plesk//debian//

# Getting Plesk config for PLESK_18_0_76/deb12.0_x86_64
echo 'Getting Plesk config for PLESK_18_0_76/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805//plesk-18.0.76-deb12.0-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Getting Plesk packages for PLESK_18_0_76/deb12.0_x86_64
echo 'Getting Plesk packages for PLESK_18_0_76/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805/dist-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Getting Plesk updates for PLESK_18_0_76/deb12.0_x86_64
echo 'Getting Plesk updates for PLESK_18_0_76/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805/update-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Getting Plesk thirdparty components for PLESK_18_0_76/deb12.0_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_76/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805/thirdparty-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Getting Plesk extra packages for PLESK_18_0_76/deb12.0_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_76/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805/extras-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/pool/PSA_18.0.76_18805 /repo-data/plesk//debian//

# Getting Plesk config for PLESK_18_0_76/deb13.0_x86_64
echo 'Getting Plesk config for PLESK_18_0_76/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805//plesk-18.0.76-deb13.0-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Getting Plesk packages for PLESK_18_0_76/deb13.0_x86_64
echo 'Getting Plesk packages for PLESK_18_0_76/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805/dist-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Getting Plesk updates for PLESK_18_0_76/deb13.0_x86_64
echo 'Getting Plesk updates for PLESK_18_0_76/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805/update-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Getting Plesk thirdparty components for PLESK_18_0_76/deb13.0_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_76/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805/thirdparty-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Getting Plesk extra packages for PLESK_18_0_76/deb13.0_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_76/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.76_18805/extras-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.76_18805/

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/pool/PSA_18.0.76_18805 /repo-data/plesk//debian//

# Create the directory for PLESK_18_0_75
echo 'Create the directory for PLESK_18_0_75'
mkdir -p /repo-data/plesk//pool/PSA_18.0.75_18480/

# Getting extensions
echo 'Getting extensions'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/extensions /repo-data/plesk//

# Sync the microupdates directory for PLESK_18_0_75
echo 'Sync the microupdates directory for PLESK_18_0_75'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480//microupdates /repo-data/plesk//pool/PSA_18.0.75_18480/ 1>/dev/null 2>&1

# Sync the examiners directory for PLESK_18_0_75
echo 'Sync the examiners directory for PLESK_18_0_75'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480//examiners /repo-data/plesk//pool/PSA_18.0.75_18480/ 1>/dev/null 2>&1

# Sync the dists directory for PLESK_18_0_75
echo 'Sync the dists directory for PLESK_18_0_75'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480//dists /repo-data/plesk//pool/PSA_18.0.75_18480/ 1>/dev/null 2>&1

# Getting plesk_getkeyinfo.sh
echo 'Getting plesk_getkeyinfo.sh'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480//plesk_getkeyinfo.sh /repo-data/plesk//pool/PSA_18.0.75_18480/ 1>/dev/null 2>&1

# Getting Parallels_Installer
echo 'Getting Parallels_Installer'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/Parallels_Installer /repo-data/plesk//

# Getting Installer
echo 'Getting Installer'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/Installer /repo-data/plesk//

# Getting Plesk config for PLESK_18_0_75/cos7_x86_64
echo 'Getting Plesk config for PLESK_18_0_75/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480//plesk-18.0.75-cos7-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Getting Plesk packages for PLESK_18_0_75/cos7_x86_64
echo 'Getting Plesk packages for PLESK_18_0_75/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480/dist-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Getting Plesk updates for PLESK_18_0_75/cos7_x86_64
echo 'Getting Plesk updates for PLESK_18_0_75/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480/update-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Getting Plesk thirdparty components for PLESK_18_0_75/cos7_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_75/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480/thirdparty-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Getting Plesk extra packages for PLESK_18_0_75/cos7_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_75/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480/extras-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Getting Plesk config for PLESK_18_0_75/deb11.0_x86_64
echo 'Getting Plesk config for PLESK_18_0_75/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480//plesk-18.0.75-deb11.0-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Getting Plesk packages for PLESK_18_0_75/deb11.0_x86_64
echo 'Getting Plesk packages for PLESK_18_0_75/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480/dist-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Getting Plesk updates for PLESK_18_0_75/deb11.0_x86_64
echo 'Getting Plesk updates for PLESK_18_0_75/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480/update-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Getting Plesk thirdparty components for PLESK_18_0_75/deb11.0_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_75/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480/thirdparty-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Getting Plesk extra packages for PLESK_18_0_75/deb11.0_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_75/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480/extras-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/pool/PSA_18.0.75_18480 /repo-data/plesk//debian//

# Getting Plesk config for PLESK_18_0_75/deb12.0_x86_64
echo 'Getting Plesk config for PLESK_18_0_75/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480//plesk-18.0.75-deb12.0-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Getting Plesk packages for PLESK_18_0_75/deb12.0_x86_64
echo 'Getting Plesk packages for PLESK_18_0_75/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480/dist-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Getting Plesk updates for PLESK_18_0_75/deb12.0_x86_64
echo 'Getting Plesk updates for PLESK_18_0_75/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480/update-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Getting Plesk thirdparty components for PLESK_18_0_75/deb12.0_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_75/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480/thirdparty-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Getting Plesk extra packages for PLESK_18_0_75/deb12.0_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_75/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480/extras-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/pool/PSA_18.0.75_18480 /repo-data/plesk//debian//

# Getting Plesk config for PLESK_18_0_75/deb13.0_x86_64
echo 'Getting Plesk config for PLESK_18_0_75/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480//plesk-18.0.75-deb13.0-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Getting Plesk packages for PLESK_18_0_75/deb13.0_x86_64
echo 'Getting Plesk packages for PLESK_18_0_75/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480/dist-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Getting Plesk updates for PLESK_18_0_75/deb13.0_x86_64
echo 'Getting Plesk updates for PLESK_18_0_75/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480/update-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Getting Plesk thirdparty components for PLESK_18_0_75/deb13.0_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_75/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480/thirdparty-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Getting Plesk extra packages for PLESK_18_0_75/deb13.0_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_75/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.75_18480/extras-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.75_18480/

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/pool/PSA_18.0.75_18480 /repo-data/plesk//debian//

# Create the directory for PLESK_18_0_74
echo 'Create the directory for PLESK_18_0_74'
mkdir -p /repo-data/plesk//pool/PSA_18.0.74_18022/

# Getting extensions
echo 'Getting extensions'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/extensions /repo-data/plesk//

# Sync the microupdates directory for PLESK_18_0_74
echo 'Sync the microupdates directory for PLESK_18_0_74'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022//microupdates /repo-data/plesk//pool/PSA_18.0.74_18022/ 1>/dev/null 2>&1

# Sync the examiners directory for PLESK_18_0_74
echo 'Sync the examiners directory for PLESK_18_0_74'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022//examiners /repo-data/plesk//pool/PSA_18.0.74_18022/ 1>/dev/null 2>&1

# Sync the dists directory for PLESK_18_0_74
echo 'Sync the dists directory for PLESK_18_0_74'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022//dists /repo-data/plesk//pool/PSA_18.0.74_18022/ 1>/dev/null 2>&1

# Getting plesk_getkeyinfo.sh
echo 'Getting plesk_getkeyinfo.sh'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022//plesk_getkeyinfo.sh /repo-data/plesk//pool/PSA_18.0.74_18022/ 1>/dev/null 2>&1

# Getting Parallels_Installer
echo 'Getting Parallels_Installer'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/Parallels_Installer /repo-data/plesk//

# Getting Installer
echo 'Getting Installer'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/Installer /repo-data/plesk//

# Getting Plesk config for PLESK_18_0_74/cos7_x86_64
echo 'Getting Plesk config for PLESK_18_0_74/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022//plesk-18.0.74-cos7-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Getting Plesk packages for PLESK_18_0_74/cos7_x86_64
echo 'Getting Plesk packages for PLESK_18_0_74/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022/dist-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Getting Plesk updates for PLESK_18_0_74/cos7_x86_64
echo 'Getting Plesk updates for PLESK_18_0_74/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022/update-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Getting Plesk thirdparty components for PLESK_18_0_74/cos7_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_74/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022/thirdparty-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Getting Plesk extra packages for PLESK_18_0_74/cos7_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_74/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022/extras-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Getting Plesk config for PLESK_18_0_74/deb11.0_x86_64
echo 'Getting Plesk config for PLESK_18_0_74/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022//plesk-18.0.74-deb11.0-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Getting Plesk packages for PLESK_18_0_74/deb11.0_x86_64
echo 'Getting Plesk packages for PLESK_18_0_74/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022/dist-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Getting Plesk updates for PLESK_18_0_74/deb11.0_x86_64
echo 'Getting Plesk updates for PLESK_18_0_74/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022/update-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Getting Plesk thirdparty components for PLESK_18_0_74/deb11.0_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_74/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022/thirdparty-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Getting Plesk extra packages for PLESK_18_0_74/deb11.0_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_74/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022/extras-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/pool/PSA_18.0.74_18022 /repo-data/plesk//debian//

# Getting Plesk config for PLESK_18_0_74/deb12.0_x86_64
echo 'Getting Plesk config for PLESK_18_0_74/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022//plesk-18.0.74-deb12.0-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Getting Plesk packages for PLESK_18_0_74/deb12.0_x86_64
echo 'Getting Plesk packages for PLESK_18_0_74/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022/dist-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Getting Plesk updates for PLESK_18_0_74/deb12.0_x86_64
echo 'Getting Plesk updates for PLESK_18_0_74/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022/update-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Getting Plesk thirdparty components for PLESK_18_0_74/deb12.0_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_74/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022/thirdparty-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Getting Plesk extra packages for PLESK_18_0_74/deb12.0_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_74/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022/extras-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/pool/PSA_18.0.74_18022 /repo-data/plesk//debian//

# Getting Plesk config for PLESK_18_0_74/deb13.0_x86_64
echo 'Getting Plesk config for PLESK_18_0_74/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022//plesk-18.0.74-deb13.0-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Getting Plesk packages for PLESK_18_0_74/deb13.0_x86_64
echo 'Getting Plesk packages for PLESK_18_0_74/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022/dist-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Getting Plesk updates for PLESK_18_0_74/deb13.0_x86_64
echo 'Getting Plesk updates for PLESK_18_0_74/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022/update-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Getting Plesk thirdparty components for PLESK_18_0_74/deb13.0_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_74/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022/thirdparty-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Getting Plesk extra packages for PLESK_18_0_74/deb13.0_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_74/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.74_18022/extras-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.74_18022/

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/pool/PSA_18.0.74_18022 /repo-data/plesk//debian//

# Create the directory for PLESK_18_0_73
echo 'Create the directory for PLESK_18_0_73'
mkdir -p /repo-data/plesk//pool/PSA_18.0.73_17971/

# Getting extensions
echo 'Getting extensions'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/extensions /repo-data/plesk//

# Sync the microupdates directory for PLESK_18_0_73
echo 'Sync the microupdates directory for PLESK_18_0_73'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971//microupdates /repo-data/plesk//pool/PSA_18.0.73_17971/ 1>/dev/null 2>&1

# Sync the examiners directory for PLESK_18_0_73
echo 'Sync the examiners directory for PLESK_18_0_73'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971//examiners /repo-data/plesk//pool/PSA_18.0.73_17971/ 1>/dev/null 2>&1

# Sync the dists directory for PLESK_18_0_73
echo 'Sync the dists directory for PLESK_18_0_73'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971//dists /repo-data/plesk//pool/PSA_18.0.73_17971/ 1>/dev/null 2>&1

# Getting plesk_getkeyinfo.sh
echo 'Getting plesk_getkeyinfo.sh'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971//plesk_getkeyinfo.sh /repo-data/plesk//pool/PSA_18.0.73_17971/ 1>/dev/null 2>&1

# Getting Parallels_Installer
echo 'Getting Parallels_Installer'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/Parallels_Installer /repo-data/plesk//

# Getting Installer
echo 'Getting Installer'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/Installer /repo-data/plesk//

# Getting Plesk config for PLESK_18_0_73/cos7_x86_64
echo 'Getting Plesk config for PLESK_18_0_73/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971//plesk-18.0.73-cos7-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Getting Plesk packages for PLESK_18_0_73/cos7_x86_64
echo 'Getting Plesk packages for PLESK_18_0_73/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971/dist-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Getting Plesk updates for PLESK_18_0_73/cos7_x86_64
echo 'Getting Plesk updates for PLESK_18_0_73/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971/update-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Getting Plesk thirdparty components for PLESK_18_0_73/cos7_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_73/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971/thirdparty-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Getting Plesk extra packages for PLESK_18_0_73/cos7_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_73/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971/extras-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Getting Plesk config for PLESK_18_0_73/deb11.0_x86_64
echo 'Getting Plesk config for PLESK_18_0_73/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971//plesk-18.0.73-deb11.0-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Getting Plesk packages for PLESK_18_0_73/deb11.0_x86_64
echo 'Getting Plesk packages for PLESK_18_0_73/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971/dist-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Getting Plesk updates for PLESK_18_0_73/deb11.0_x86_64
echo 'Getting Plesk updates for PLESK_18_0_73/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971/update-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Getting Plesk thirdparty components for PLESK_18_0_73/deb11.0_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_73/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971/thirdparty-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Getting Plesk extra packages for PLESK_18_0_73/deb11.0_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_73/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971/extras-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/pool/PSA_18.0.73_17971 /repo-data/plesk//debian//

# Getting Plesk config for PLESK_18_0_73/deb12.0_x86_64
echo 'Getting Plesk config for PLESK_18_0_73/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971//plesk-18.0.73-deb12.0-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Getting Plesk packages for PLESK_18_0_73/deb12.0_x86_64
echo 'Getting Plesk packages for PLESK_18_0_73/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971/dist-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Getting Plesk updates for PLESK_18_0_73/deb12.0_x86_64
echo 'Getting Plesk updates for PLESK_18_0_73/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971/update-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Getting Plesk thirdparty components for PLESK_18_0_73/deb12.0_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_73/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971/thirdparty-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Getting Plesk extra packages for PLESK_18_0_73/deb12.0_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_73/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971/extras-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/pool/PSA_18.0.73_17971 /repo-data/plesk//debian//

# Getting Plesk config for PLESK_18_0_73/deb13.0_x86_64
echo 'Getting Plesk config for PLESK_18_0_73/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971//plesk-18.0.73-deb13.0-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Getting Plesk packages for PLESK_18_0_73/deb13.0_x86_64
echo 'Getting Plesk packages for PLESK_18_0_73/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971/dist-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Getting Plesk updates for PLESK_18_0_73/deb13.0_x86_64
echo 'Getting Plesk updates for PLESK_18_0_73/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971/update-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Getting Plesk thirdparty components for PLESK_18_0_73/deb13.0_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_73/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971/thirdparty-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Getting Plesk extra packages for PLESK_18_0_73/deb13.0_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_73/deb13.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.73_17971/extras-deb-Debian-13.0-x86_64 /repo-data/plesk//pool/PSA_18.0.73_17971/

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/pool/PSA_18.0.73_17971 /repo-data/plesk//debian//

# Create the directory for PLESK_18_0_72
echo 'Create the directory for PLESK_18_0_72'
mkdir -p /repo-data/plesk//pool/PSA_18.0.72_17583/

# Getting extensions
echo 'Getting extensions'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/extensions /repo-data/plesk//

# Sync the microupdates directory for PLESK_18_0_72
echo 'Sync the microupdates directory for PLESK_18_0_72'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.72_17583//microupdates /repo-data/plesk//pool/PSA_18.0.72_17583/ 1>/dev/null 2>&1

# Sync the examiners directory for PLESK_18_0_72
echo 'Sync the examiners directory for PLESK_18_0_72'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.72_17583//examiners /repo-data/plesk//pool/PSA_18.0.72_17583/ 1>/dev/null 2>&1

# Sync the dists directory for PLESK_18_0_72
echo 'Sync the dists directory for PLESK_18_0_72'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.72_17583//dists /repo-data/plesk//pool/PSA_18.0.72_17583/ 1>/dev/null 2>&1

# Getting plesk_getkeyinfo.sh
echo 'Getting plesk_getkeyinfo.sh'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.72_17583//plesk_getkeyinfo.sh /repo-data/plesk//pool/PSA_18.0.72_17583/ 1>/dev/null 2>&1

# Getting Parallels_Installer
echo 'Getting Parallels_Installer'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/Parallels_Installer /repo-data/plesk//

# Getting Installer
echo 'Getting Installer'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/Installer /repo-data/plesk//

# Getting Plesk config for PLESK_18_0_72/cos7_x86_64
echo 'Getting Plesk config for PLESK_18_0_72/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.72_17583//plesk-18.0.72-cos7-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.72_17583/

# Getting Plesk packages for PLESK_18_0_72/cos7_x86_64
echo 'Getting Plesk packages for PLESK_18_0_72/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.72_17583/dist-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.72_17583/

# Getting Plesk updates for PLESK_18_0_72/cos7_x86_64
echo 'Getting Plesk updates for PLESK_18_0_72/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.72_17583/update-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.72_17583/

# Getting Plesk thirdparty components for PLESK_18_0_72/cos7_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_72/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.72_17583/thirdparty-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.72_17583/

# Getting Plesk extra packages for PLESK_18_0_72/cos7_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_72/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.72_17583/extras-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.72_17583/

# Getting Plesk config for PLESK_18_0_72/deb11.0_x86_64
echo 'Getting Plesk config for PLESK_18_0_72/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.72_17583//plesk-18.0.72-deb11.0-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.72_17583/

# Getting Plesk packages for PLESK_18_0_72/deb11.0_x86_64
echo 'Getting Plesk packages for PLESK_18_0_72/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.72_17583/dist-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.72_17583/

# Getting Plesk updates for PLESK_18_0_72/deb11.0_x86_64
echo 'Getting Plesk updates for PLESK_18_0_72/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.72_17583/update-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.72_17583/

# Getting Plesk thirdparty components for PLESK_18_0_72/deb11.0_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_72/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.72_17583/thirdparty-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.72_17583/

# Getting Plesk extra packages for PLESK_18_0_72/deb11.0_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_72/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.72_17583/extras-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.72_17583/

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/pool/PSA_18.0.72_17583 /repo-data/plesk//debian//

# Getting Plesk config for PLESK_18_0_72/deb12.0_x86_64
echo 'Getting Plesk config for PLESK_18_0_72/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.72_17583//plesk-18.0.72-deb12.0-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.72_17583/

# Getting Plesk packages for PLESK_18_0_72/deb12.0_x86_64
echo 'Getting Plesk packages for PLESK_18_0_72/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.72_17583/dist-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.72_17583/

# Getting Plesk updates for PLESK_18_0_72/deb12.0_x86_64
echo 'Getting Plesk updates for PLESK_18_0_72/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.72_17583/update-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.72_17583/

# Getting Plesk thirdparty components for PLESK_18_0_72/deb12.0_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_72/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.72_17583/thirdparty-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.72_17583/

# Getting Plesk extra packages for PLESK_18_0_72/deb12.0_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_72/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.72_17583/extras-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.72_17583/

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/pool/PSA_18.0.72_17583 /repo-data/plesk//debian//

# Create the directory for PLESK_18_0_71
echo 'Create the directory for PLESK_18_0_71'
mkdir -p /repo-data/plesk//pool/PSA_18.0.71_17351/

# Getting extensions
echo 'Getting extensions'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/extensions /repo-data/plesk//

# Sync the microupdates directory for PLESK_18_0_71
echo 'Sync the microupdates directory for PLESK_18_0_71'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.71_17351//microupdates /repo-data/plesk//pool/PSA_18.0.71_17351/ 1>/dev/null 2>&1

# Sync the examiners directory for PLESK_18_0_71
echo 'Sync the examiners directory for PLESK_18_0_71'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.71_17351//examiners /repo-data/plesk//pool/PSA_18.0.71_17351/ 1>/dev/null 2>&1

# Sync the dists directory for PLESK_18_0_71
echo 'Sync the dists directory for PLESK_18_0_71'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.71_17351//dists /repo-data/plesk//pool/PSA_18.0.71_17351/ 1>/dev/null 2>&1

# Getting plesk_getkeyinfo.sh
echo 'Getting plesk_getkeyinfo.sh'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.71_17351//plesk_getkeyinfo.sh /repo-data/plesk//pool/PSA_18.0.71_17351/ 1>/dev/null 2>&1

# Getting Parallels_Installer
echo 'Getting Parallels_Installer'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/Parallels_Installer /repo-data/plesk//

# Getting Installer
echo 'Getting Installer'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/Installer /repo-data/plesk//

# Getting Plesk config for PLESK_18_0_71/cos7_x86_64
echo 'Getting Plesk config for PLESK_18_0_71/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.71_17351//plesk-18.0.71-cos7-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.71_17351/

# Getting Plesk packages for PLESK_18_0_71/cos7_x86_64
echo 'Getting Plesk packages for PLESK_18_0_71/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.71_17351/dist-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.71_17351/

# Getting Plesk updates for PLESK_18_0_71/cos7_x86_64
echo 'Getting Plesk updates for PLESK_18_0_71/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.71_17351/update-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.71_17351/

# Getting Plesk thirdparty components for PLESK_18_0_71/cos7_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_71/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.71_17351/thirdparty-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.71_17351/

# Getting Plesk extra packages for PLESK_18_0_71/cos7_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_71/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.71_17351/extras-rpm-CentOS-7-x86_64 /repo-data/plesk//pool/PSA_18.0.71_17351/

# Getting Plesk config for PLESK_18_0_71/deb11.0_x86_64
echo 'Getting Plesk config for PLESK_18_0_71/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.71_17351//plesk-18.0.71-deb11.0-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.71_17351/

# Getting Plesk packages for PLESK_18_0_71/deb11.0_x86_64
echo 'Getting Plesk packages for PLESK_18_0_71/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.71_17351/dist-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.71_17351/

# Getting Plesk updates for PLESK_18_0_71/deb11.0_x86_64
echo 'Getting Plesk updates for PLESK_18_0_71/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.71_17351/update-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.71_17351/

# Getting Plesk thirdparty components for PLESK_18_0_71/deb11.0_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_71/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.71_17351/thirdparty-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.71_17351/

# Getting Plesk extra packages for PLESK_18_0_71/deb11.0_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_71/deb11.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.71_17351/extras-deb-Debian-11.0-x86_64 /repo-data/plesk//pool/PSA_18.0.71_17351/

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/pool/PSA_18.0.71_17351 /repo-data/plesk//debian//

# Getting Plesk config for PLESK_18_0_71/deb12.0_x86_64
echo 'Getting Plesk config for PLESK_18_0_71/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.71_17351//plesk-18.0.71-deb12.0-x86_64.inf3 /repo-data/plesk//pool/PSA_18.0.71_17351/

# Getting Plesk packages for PLESK_18_0_71/deb12.0_x86_64
echo 'Getting Plesk packages for PLESK_18_0_71/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.71_17351/dist-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.71_17351/

# Getting Plesk updates for PLESK_18_0_71/deb12.0_x86_64
echo 'Getting Plesk updates for PLESK_18_0_71/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.71_17351/update-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.71_17351/

# Getting Plesk thirdparty components for PLESK_18_0_71/deb12.0_x86_64
echo 'Getting Plesk thirdparty components for PLESK_18_0_71/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.71_17351/thirdparty-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.71_17351/

# Getting Plesk extra packages for PLESK_18_0_71/deb12.0_x86_64
echo 'Getting Plesk extra packages for PLESK_18_0_71/deb12.0_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PSA_18.0.71_17351/extras-deb-Debian-12.0-x86_64 /repo-data/plesk//pool/PSA_18.0.71_17351/

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/pool/PSA_18.0.71_17351 /repo-data/plesk//debian//

# Create the directory for PLESK_12_0_18
echo 'Create the directory for PLESK_12_0_18'
mkdir -p /repo-data/plesk//PSA_12.0.18/

# Getting extensions
echo 'Getting extensions'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/extensions /repo-data/plesk//

# Sync the microupdates directory for PLESK_12_0_18
echo 'Sync the microupdates directory for PLESK_12_0_18'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PSA_12.0.18//microupdates /repo-data/plesk//PSA_12.0.18/ 1>/dev/null 2>&1

# Sync the examiners directory for PLESK_12_0_18
echo 'Sync the examiners directory for PLESK_12_0_18'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PSA_12.0.18//examiners /repo-data/plesk//PSA_12.0.18/ 1>/dev/null 2>&1

# Sync the dists directory for PLESK_12_0_18
echo 'Sync the dists directory for PLESK_12_0_18'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PSA_12.0.18//dists /repo-data/plesk//PSA_12.0.18/ 1>/dev/null 2>&1

# Getting plesk_getkeyinfo.sh
echo 'Getting plesk_getkeyinfo.sh'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PSA_12.0.18//plesk_getkeyinfo.sh /repo-data/plesk//PSA_12.0.18/ 1>/dev/null 2>&1

# Getting Parallels_Installer
echo 'Getting Parallels_Installer'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/Parallels_Installer /repo-data/plesk//

# Getting Installer
echo 'Getting Installer'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/Installer /repo-data/plesk//

# Getting Plesk config for PLESK_12_0_18/cos7_x86_64
echo 'Getting Plesk config for PLESK_12_0_18/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PSA_12.0.18//plesk-12.0.18-cos7-x86_64.inf3 /repo-data/plesk//PSA_12.0.18/

# Getting Plesk patch config for PLESK_12_0_18/cos7_x86_64
echo 'Getting Plesk patch config for PLESK_12_0_18/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PSA_12.0.18//plesk-patches-12.0.18-cos7-x86_64.inf3 /repo-data/plesk//PSA_12.0.18/

# Getting Plesk packages for PLESK_12_0_18/cos7_x86_64
echo 'Getting Plesk packages for PLESK_12_0_18/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PSA_12.0.18/dist-rpm-CentOS-7-x86_64 /repo-data/plesk//PSA_12.0.18/

# Getting Plesk updates for PLESK_12_0_18/cos7_x86_64
echo 'Getting Plesk updates for PLESK_12_0_18/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PSA_12.0.18/update-rpm-CentOS-7-x86_64 /repo-data/plesk//PSA_12.0.18/

# Getting Plesk thirdparty components for PLESK_12_0_18/cos7_x86_64
echo 'Getting Plesk thirdparty components for PLESK_12_0_18/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PSA_12.0.18/thirdparty-rpm-CentOS-7-x86_64 /repo-data/plesk//PSA_12.0.18/

# Getting Plesk extra packages for PLESK_12_0_18/cos7_x86_64
echo 'Getting Plesk extra packages for PLESK_12_0_18/cos7_x86_64'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PSA_12.0.18/extras-rpm-CentOS-7-x86_64 /repo-data/plesk//PSA_12.0.18/

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP_8_5
echo 'Getting the addon component PHP_8_5'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP85_17 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP85_17 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP85_17 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk//pool

# Getting the addon component WPB_18_0_69
echo 'Getting the addon component WPB_18_0_69'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/WPB_18.0.69_88 /repo-data/plesk//pool

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP_8_4
echo 'Getting the addon component PHP_8_4'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP84_17 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP84_17 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP84_17 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP_8_3
echo 'Getting the addon component PHP_8_3'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP83_17 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP83_17 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP83_17 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk//pool

# Getting the addon component PHP83_17
echo 'Getting the addon component PHP83_17'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PHP_8.3.19_86 /repo-data/plesk//pool

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP_8_2
echo 'Getting the addon component PHP_8_2'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP82_17 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP82_17 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP82_17 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk//pool

# Getting the addon component PHP81_17
echo 'Getting the addon component PHP81_17'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PHP_8.2.28_137 /repo-data/plesk//pool

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP_8_1
echo 'Getting the addon component PHP_8_1'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP81_17 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP81_17 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP81_17 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP_8_0
echo 'Getting the addon component PHP_8_0'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP80_17 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP80_17 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP80_17 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk//pool

# Getting the addon component PHP80_17
echo 'Getting the addon component PHP80_17'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PHP_8.0.16_86 /repo-data/plesk//pool

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk//pool

# Getting the addon component PHP_7_2
echo 'Getting the addon component PHP_7_2'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PHP_7.2.34_22 /repo-data/plesk//pool

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk//pool

# Getting the addon component PHP72_17
echo 'Getting the addon component PHP72_17'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PHP_7.2.34_151 /repo-data/plesk//pool

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP_7_4
echo 'Getting the addon component PHP_7_4'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP74_17 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP74_17 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP74_17 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk//pool

# Getting the addon component PHP74_17
echo 'Getting the addon component PHP74_17'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PHP_7.4.33_209 /repo-data/plesk//pool

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk//pool

# Getting the addon component PHP_7_3
echo 'Getting the addon component PHP_7_3'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PHP_7.3.33_13 /repo-data/plesk//pool

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk//pool

# Getting the addon component PHP73_17
echo 'Getting the addon component PHP73_17'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PHP_7.3.33_248 /repo-data/plesk//pool

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk//pool

# Getting the addon component PHP_7_1
echo 'Getting the addon component PHP_7_1'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PHP_7.1.33_14 /repo-data/plesk//pool

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk//pool

# Getting the addon component PHP71_17
echo 'Getting the addon component PHP71_17'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/pool/PHP_7.1.33_98 /repo-data/plesk//pool

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PPSB_12_0_8
echo 'Getting the addon component PPSB_12_0_8'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/SITEBUILDER_12.0.8 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/SITEBUILDER_12.0.8 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/SITEBUILDER_12.0.8 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP_7_0
echo 'Getting the addon component PHP_7_0'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP70_17 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP70_17 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP70_17 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP70_17
echo 'Getting the addon component PHP70_17'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP70_17 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP70_17 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP70_17 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP_5_6
echo 'Getting the addon component PHP_5_6'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP56_17 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP56_17 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP56_17 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP56_17
echo 'Getting the addon component PHP56_17'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP56_17 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP56_17 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP56_17 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP_5.6.33_FOR_12.0.18
echo 'Getting the addon component PHP_5.6.33_FOR_12.0.18'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP_5.6.33 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP_5.6.33 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP_5.6.33 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP55_17
echo 'Getting the addon component PHP55_17'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP55_17 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP55_17 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP55_17 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP_5.5.38_FOR_12.0.18
echo 'Getting the addon component PHP_5.5.38_FOR_12.0.18'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP_5.5.38 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP_5.5.38 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP_5.5.38 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP54_17
echo 'Getting the addon component PHP54_17'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP54_17 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP54_17 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP54_17 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP_5.4.45_FOR_12.0.18
echo 'Getting the addon component PHP_5.4.45_FOR_12.0.18'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP_5.4.45 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP_5.4.45 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP_5.4.45 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP53_17
echo 'Getting the addon component PHP53_17'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP53_17 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP53_17 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP53_17 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP_5.3.29_FOR_12.0.18
echo 'Getting the addon component PHP_5.3.29_FOR_12.0.18'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP_5.3.29 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP_5.3.29 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP_5.3.29 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP52_17
echo 'Getting the addon component PHP52_17'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP52_17 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP52_17 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP52_17 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component PHP_5.2.17_FOR_12.0.18
echo 'Getting the addon component PHP_5.2.17_FOR_12.0.18'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/PHP_5.2.17 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/PHP_5.2.17 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/PHP_5.2.17 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component MYSQL_5_5_52
echo 'Getting the addon component MYSQL_5_5_52'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/MYSQL_5.5.52 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/MYSQL_5.5.52 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/MYSQL_5.5.52 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component APACHE_2.2.31
echo 'Getting the addon component APACHE_2.2.31'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/APACHE_2.2.31 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/APACHE_2.2.31 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/APACHE_2.2.31 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

# Create the directory for Addons
echo 'Create the directory for Addons'
mkdir -p /repo-data/plesk///

# Getting the addon component NGINX_1.11.1
echo 'Getting the addon component NGINX_1.11.1'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/NGINX_1.11.1 /repo-data/plesk//

# Create the directory for Debian apt cache
echo 'Create the directory for Debian apt cache'
mkdir -p /repo-data/plesk//debian//

# Create Debian apt cache
echo 'Create Debian apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/debian/NGINX_1.11.1 /repo-data/plesk//debian// 1>/dev/null 2>&1

# Create the directory for Ubuntu apt cache
echo 'Create the directory for Ubuntu apt cache'
mkdir -p /repo-data/plesk//ubuntu//

# Create Ubuntu apt cache
echo 'Create Ubuntu apt cache'
copy_target rsync://rsync.autoinstall.plesk.com/autoinstall/ubuntu/NGINX_1.11.1 /repo-data/plesk//ubuntu// 1>/dev/null 2>&1

