Skip to content

Commit 6a852e6

Browse files
authored
Merge branch 'master' into fix/mistral-logrotate
2 parents 22c610c + 3fc7985 commit 6a852e6

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

rake/build/environment.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@
8484
envpass :giturl, 'https://github.com/StackStorm/mistral', from: 'ST2MISTRAL_GITURL'
8585
envpass :gitrev, 'master', from: 'ST2MISTRAL_GITREV'
8686
envpass :gitdir, make_tmpname('mistral-'), from: 'ST2MISTRAL_GITDIR'
87-
envpass :mistral_version, '2.5dev'
87+
envpass :mistral_version, '2.6dev'
8888
envpass :mistral_release, 1
8989
end

scripts/includes/common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ function port_status() {
7474
#
7575
# Sample output:
7676
# 0.0.0.0:25000 7506/sshd
77-
ret=$(sudo netstat -tunlp --inet | awk -v port=:$1 '$4 ~ port && $6 ~ /LISTEN/ { print $4 " " $7 }' || echo 'Unbound');
77+
ret=$(sudo netstat -tunlp --inet | awk -v port=":$1$" '$4 ~ port && $6 ~ /LISTEN/ { print $4 " " $7 }' || echo 'Unbound');
7878
echo "$ret";
7979
}
8080

scripts/st2_bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ USERNAME=''
1515
PASSWORD=''
1616

1717
# Note: This variable needs to default to a branch of the latest stable release
18-
BRANCH='v2.4'
18+
BRANCH='v2.5'
1919
FORCE_BRANCH=""
2020

2121
adddate() {

scripts/st2bootstrap-deb.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ function port_status() {
191191
#
192192
# Sample output:
193193
# 0.0.0.0:25000 7506/sshd
194-
ret=$(sudo netstat -tunlp --inet | awk -v port=:$1 '$4 ~ port && $6 ~ /LISTEN/ { print $4 " " $7 }' || echo 'Unbound');
194+
ret=$(sudo netstat -tunlp --inet | awk -v port=":$1$" '$4 ~ port && $6 ~ /LISTEN/ { print $4 " " $7 }' || echo 'Unbound');
195195
echo "$ret";
196196
}
197197

scripts/st2bootstrap-el6.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ function port_status() {
186186
#
187187
# Sample output:
188188
# 0.0.0.0:25000 7506/sshd
189-
ret=$(sudo netstat -tunlp --inet | awk -v port=:$1 '$4 ~ port && $6 ~ /LISTEN/ { print $4 " " $7 }' || echo 'Unbound');
189+
ret=$(sudo netstat -tunlp --inet | awk -v port=":$1$" '$4 ~ port && $6 ~ /LISTEN/ { print $4 " " $7 }' || echo 'Unbound');
190190
echo "$ret";
191191
}
192192

scripts/st2bootstrap-el7.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ function port_status() {
186186
#
187187
# Sample output:
188188
# 0.0.0.0:25000 7506/sshd
189-
ret=$(sudo netstat -tunlp --inet | awk -v port=:$1 '$4 ~ port && $6 ~ /LISTEN/ { print $4 " " $7 }' || echo 'Unbound');
189+
ret=$(sudo netstat -tunlp --inet | awk -v port=":$1$" '$4 ~ port && $6 ~ /LISTEN/ { print $4 " " $7 }' || echo 'Unbound');
190190
echo "$ret";
191191
}
192192

0 commit comments

Comments
 (0)