Есть скрипт для подключения к определенному серверу vpn на макбуке, а надо что бы сервер выбирался рандомно из массива всего серверов 22(в скрипте не все забиты) вот что пока получается но не могу понять как дальше делать
on idle
tell application "System Events"
tell current location of network preferences
set connection_location to {"DE Server", "NL Server", "US Server", "RO Server"}
set x to random number from 1 to 22
set myConnection to the service "DE Server"
if current configuration of myConnection is not connected then
connect myConnection
end if
end tell
return 5
end tell
end idle