#!/bin/bash extServ=roman@192.168.1.10 extFtp=/data/share_res/ftp test -z "$(ls $extFtp)" && sshfs -o auto_unmount $extServ:$extFtp $extFtp if test $# -gt 0; then ./oscadaRepBranches $* else export OSCADA_Check=${OSCADA_Check:=1} ./oscadaRepBranches \ "Debian_13_32:rep 1110" "Debian_13_64:rep 1110" "Debian_13_armhf:rep 1110" "Debian_13_arm64:rep 1110" \ "Debian_12_32:rep 1111" "Debian_12_64:rep 1111" "Debian_12_armhf:rep 1110" "Debian_12_arm64:rep 1110" \ "Debian_11_32:rep 1111" "Debian_11_64:rep 1111" "Debian_11_armhf:rep 1110" "Debian_11_arm64:rep 1110" \ "Debian_10_32:rep 1110" "Debian_10_64:rep 1110" "Debian_10_armhf:rep 1110" \ "Debian_9_32:rep 0110" "Debian_9_64:rep 0110" "Debian_9_armhf:rep 0110" \ "Ubuntu_24.04_32 1110" "Ubuntu_24.04_64 1110" \ "Ubuntu_22.04_32 1110" "Ubuntu_22.04_64 1110" \ "Ubuntu_20.04_32 1010" "Ubuntu_20.04_64 1010" \ "Ubuntu_18.04_32 1010" "Ubuntu_18.04_64 1010" \ "CentOs_8_64:dev 1110" \ "SuSE_15_64:dev 1010" \ "Live_Deb13_64 11101" \ "Live_Deb12_64 11101" "Live_Deb12_32 11101" \ "Live_Deb11_64 11101" "Live_Deb11_32 11101" \ "Live_Deb10_64 11101" "Live_Deb10_32 11101" \ "Live_Deb9_64 01101" "Live_Deb9_32 01101" fi umount $extFtp