diff --git a/reliable-services-actor-sample/Actors/ActorCounter/Scripts/install.sh b/reliable-services-actor-sample/Actors/ActorCounter/Scripts/install.sh index 7896722..3153ecb 100755 --- a/reliable-services-actor-sample/Actors/ActorCounter/Scripts/install.sh +++ b/reliable-services-actor-sample/Actors/ActorCounter/Scripts/install.sh @@ -4,6 +4,6 @@ set -x DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" appPkg="$DIR/../CounterActorApplication" -sfctl application upload --path $appPkg --show-progress +sfctl application upload --path $appPkg --show-progress -t 1200 sfctl application provision --application-type-build-path CounterActorApplication sfctl application create --app-name fabric:/CounterActorApplication --app-type CounterActorApplicationType --app-version 1.0.0 diff --git a/reliable-services-actor-sample/Actors/ActorCounter/Scripts/upgrade.sh b/reliable-services-actor-sample/Actors/ActorCounter/Scripts/upgrade.sh index ec52d0c..1393153 100755 --- a/reliable-services-actor-sample/Actors/ActorCounter/Scripts/upgrade.sh +++ b/reliable-services-actor-sample/Actors/ActorCounter/Scripts/upgrade.sh @@ -4,7 +4,7 @@ set -x DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" appPkg="$DIR/../CounterActorApplication" -sfctl application upload --path $appPkg --show-progress +sfctl application upload --path $appPkg --show-progress -t 1200 if [ $? -ne 0 ]; then echo "Application copy failed." exit 1 diff --git a/reliable-services-actor-sample/Actors/VisualObjectActor/Scripts/install.sh b/reliable-services-actor-sample/Actors/VisualObjectActor/Scripts/install.sh index c96529a..bc46c85 100755 --- a/reliable-services-actor-sample/Actors/VisualObjectActor/Scripts/install.sh +++ b/reliable-services-actor-sample/Actors/VisualObjectActor/Scripts/install.sh @@ -19,7 +19,7 @@ fi DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" appPkg="$DIR/../VisualObjectApplication" -sfctl application upload --path $appPkg --show-progress +sfctl application upload --path $appPkg --show-progress -t 1200 sfctl application provision --application-type-build-path VisualObjectApplication if [ $# -eq 0 ] then diff --git a/reliable-services-actor-sample/Actors/VisualObjectActor/Scripts/upgrade.sh b/reliable-services-actor-sample/Actors/VisualObjectActor/Scripts/upgrade.sh index 1c94b22..2ea8965 100755 --- a/reliable-services-actor-sample/Actors/VisualObjectActor/Scripts/upgrade.sh +++ b/reliable-services-actor-sample/Actors/VisualObjectActor/Scripts/upgrade.sh @@ -4,7 +4,7 @@ set -x DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" appPkg="$DIR/../VisualObjectApplication" -sfctl application upload --path $appPkg --show-progress +sfctl application upload --path $appPkg --show-progress -t 1200 if [ $? -ne 0 ]; then echo "Application copy failed." exit 1 diff --git a/reliable-services-actor-sample/Services/EchoServer/EchoServer1.0/Scripts/install.sh b/reliable-services-actor-sample/Services/EchoServer/EchoServer1.0/Scripts/install.sh index 11fcc88..e8af3d8 100755 --- a/reliable-services-actor-sample/Services/EchoServer/EchoServer1.0/Scripts/install.sh +++ b/reliable-services-actor-sample/Services/EchoServer/EchoServer1.0/Scripts/install.sh @@ -4,7 +4,7 @@ set -x DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" appPkg="$DIR/../EchoServerApplication" -sfctl application upload --path $appPkg --show-progress +sfctl application upload --path $appPkg --show-progress -t 1200 sfctl application provision --application-type-build-path EchoServerApplication if [ $# -eq 0 ] then diff --git a/reliable-services-actor-sample/Services/EchoServer/EchoServer1.0/Scripts/upgrade.sh b/reliable-services-actor-sample/Services/EchoServer/EchoServer1.0/Scripts/upgrade.sh index 9bfcb6b..6f362d6 100755 --- a/reliable-services-actor-sample/Services/EchoServer/EchoServer1.0/Scripts/upgrade.sh +++ b/reliable-services-actor-sample/Services/EchoServer/EchoServer1.0/Scripts/upgrade.sh @@ -4,7 +4,7 @@ set -x DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" appPkg="$DIR/../EchoServerApplication" -sfctl application upload --path $appPkg --show-progress +sfctl application upload --path $appPkg --show-progress -t 1200 if [ $? -ne 0 ]; then echo "Application copy failed." exit 1 diff --git a/reliable-services-actor-sample/Services/EchoServer/EchoServer2.0/Scripts/install.sh b/reliable-services-actor-sample/Services/EchoServer/EchoServer2.0/Scripts/install.sh index ee1beb8..d924556 100755 --- a/reliable-services-actor-sample/Services/EchoServer/EchoServer2.0/Scripts/install.sh +++ b/reliable-services-actor-sample/Services/EchoServer/EchoServer2.0/Scripts/install.sh @@ -4,7 +4,7 @@ set -x DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" appPkg="$DIR/../EchoServerApplication2" -sfctl application upload --path $appPkg --show-progress +sfctl application upload --path $appPkg --show-progress -t 1200 sfctl application provision --application-type-build-path EchoServerApplication2 # Check parameters to see if InstanceCount was previously specified diff --git a/reliable-services-actor-sample/Services/EchoServer/EchoServer2.0/Scripts/upgrade.sh b/reliable-services-actor-sample/Services/EchoServer/EchoServer2.0/Scripts/upgrade.sh index 9bd506f..5f4c839 100755 --- a/reliable-services-actor-sample/Services/EchoServer/EchoServer2.0/Scripts/upgrade.sh +++ b/reliable-services-actor-sample/Services/EchoServer/EchoServer2.0/Scripts/upgrade.sh @@ -4,7 +4,7 @@ set -x DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" appPkg="$DIR/../EchoServerApplication2" -sfctl application upload --path $appPkg --show-progress +sfctl application upload --path $appPkg --show-progress -t 1200 if [ $? -ne 0 ]; then echo "Application copy failed." exit 1 diff --git a/reliable-services-actor-sample/Services/Gateway/Scripts/install.sh b/reliable-services-actor-sample/Services/Gateway/Scripts/install.sh index e920668..fdc9b91 100755 --- a/reliable-services-actor-sample/Services/Gateway/Scripts/install.sh +++ b/reliable-services-actor-sample/Services/Gateway/Scripts/install.sh @@ -19,7 +19,7 @@ fi DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" appPkg="$DIR/../GatewayApplication" -sfctl application upload --path $appPkg --show-progress +sfctl application upload --path $appPkg --show-progress -t 1200 sfctl application provision --application-type-build-path GatewayApplication if [ $# -eq 0 ] diff --git a/reliable-services-actor-sample/Services/Gateway/Scripts/upgrade.sh b/reliable-services-actor-sample/Services/Gateway/Scripts/upgrade.sh index f5038ee..8fe1978 100755 --- a/reliable-services-actor-sample/Services/Gateway/Scripts/upgrade.sh +++ b/reliable-services-actor-sample/Services/Gateway/Scripts/upgrade.sh @@ -4,7 +4,7 @@ set -x DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" appPkg="$DIR/../GatewayApplication" -sfctl application upload --path $appPkg --show-progress +sfctl application upload --path $appPkg --show-progress -t 1200 if [ $? -ne 0 ]; then echo "Application copy failed." exit 1 diff --git a/reliable-services-actor-sample/Services/WatchDog/Scripts/install.sh b/reliable-services-actor-sample/Services/WatchDog/Scripts/install.sh index 6ee642a..873b97e 100755 --- a/reliable-services-actor-sample/Services/WatchDog/Scripts/install.sh +++ b/reliable-services-actor-sample/Services/WatchDog/Scripts/install.sh @@ -19,7 +19,7 @@ fi DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" appPkg="$DIR/../WatchdogApplication" -sfctl application upload --path $appPkg --show-progress +sfctl application upload --path $appPkg --show-progress -t 1200 sfctl application provision --application-type-build-path WatchdogApplication if [ $# -eq 0 ] diff --git a/reliable-services-actor-sample/Services/WatchDog/Scripts/upgrade.sh b/reliable-services-actor-sample/Services/WatchDog/Scripts/upgrade.sh index 8f2605d..467c2ac 100755 --- a/reliable-services-actor-sample/Services/WatchDog/Scripts/upgrade.sh +++ b/reliable-services-actor-sample/Services/WatchDog/Scripts/upgrade.sh @@ -4,7 +4,7 @@ set -x DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" appPkg="$DIR/../WatchdogApplication" -sfctl application upload --path $appPkg --show-progress +sfctl application upload --path $appPkg --show-progress -t 1200 if [ $? -ne 0 ]; then echo "Application copy failed." exit 1 diff --git a/reliable-services-embedded-jetty-sample/Scripts/install.sh b/reliable-services-embedded-jetty-sample/Scripts/install.sh index e0059e0..7280797 100755 --- a/reliable-services-embedded-jetty-sample/Scripts/install.sh +++ b/reliable-services-embedded-jetty-sample/Scripts/install.sh @@ -9,7 +9,7 @@ else version="1.0.0" fi -sfctl application upload --path $appPkgPath +sfctl application upload --path $appPkgPath -t 1200 if [ $? -ne 0 ]; then echo "Application copy failed." exit 1 diff --git a/reliable-services-embedded-jetty-sample/Scripts/upgrade.sh b/reliable-services-embedded-jetty-sample/Scripts/upgrade.sh index 2d4021d..608f6f0 100755 --- a/reliable-services-embedded-jetty-sample/Scripts/upgrade.sh +++ b/reliable-services-embedded-jetty-sample/Scripts/upgrade.sh @@ -7,7 +7,7 @@ if [[ "$#" != "0" ]];then else version="1.0.0" fi -sfctl application upload --path $appPkgPath +sfctl application upload --path $appPkgPath -t 1200 if [ $? -ne 0 ]; then echo "Application copy failed." exit 1 diff --git a/reliable-services-httpcommunication-sample/Voting/Scripts/install.sh b/reliable-services-httpcommunication-sample/Voting/Scripts/install.sh index 18f1909..a5ba81c 100755 --- a/reliable-services-httpcommunication-sample/Voting/Scripts/install.sh +++ b/reliable-services-httpcommunication-sample/Voting/Scripts/install.sh @@ -9,7 +9,7 @@ else version="1.0.0" fi -sfctl application upload --path $appPkgPath +sfctl application upload --path $appPkgPath -t 1200 if [ $? -ne 0 ]; then echo "Application copy failed." exit 1 diff --git a/reliable-services-httpcommunication-sample/Voting/Scripts/upgrade.sh b/reliable-services-httpcommunication-sample/Voting/Scripts/upgrade.sh index 1200926..1ae7915 100755 --- a/reliable-services-httpcommunication-sample/Voting/Scripts/upgrade.sh +++ b/reliable-services-httpcommunication-sample/Voting/Scripts/upgrade.sh @@ -7,7 +7,7 @@ if [[ "$#" != "0" ]];then else version="1.0.0" fi -sfctl application upload --path $appPkgPath +sfctl application upload --path $appPkgPath -t 1200 if [ $? -ne 0 ]; then echo "Application copy failed." exit 1