Cette révision appartient à :
belliash 2012-01-17 21:41:18 +01:00
Parent 88d7083944
révision ad47a7b0ab
2 fichiers modifiés avec 2 ajouts et 2 suppressions

2
ezsync
Voir le fichier

@ -88,7 +88,7 @@ fi
# Initialize EzBuild environment
makeCoreDirectories || die "EzBuild was unable to create all necessary directories!" 1
EZNOTIFY="yes"
prepareSshWrappers || die "EzBuild was unable to create a wrapper files to SSH" 1
prepareWrappers || die "EzBuild was unable to create a wrapper files!" 1
trap 'die "Process killed! This may lead into unexpected problems!"' 1 2 3 9 15 17 18 23
# Load necessary public keys

Voir le fichier

@ -6,7 +6,7 @@
#-------------------------------------------------------------------------------
# Prepares SSH Wrappers for use with unknown hosts (requires key authentication)
#-------------------------------------------------------------------------------
function prepareSshWrappers() {
function prepareWrappers() {
run "cp ${EZROOT}/files/ssh_wrapper.sh ${BINDIR}/ssh_wrapper.sh" || return 1
run "chmod +x ${BINDIR}/ssh_wrapper.sh" || return 1
export GIT_SSH="${BINDIR}/ssh_wrapper.sh"