openshift-origin-node 1.3.2 → 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of openshift-origin-node might be problematic. Click here for more details.
- data/misc/bin/oo-admin-ctl-cgroups +4 -3
- data/misc/bin/rhcsh +14 -3
- data/rubygem-openshift-origin-node.spec +10 -1
- metadata +4 -4
@@ -319,11 +319,12 @@ stopuser() {
|
|
319
319
|
|
320
320
|
if [ $RETVAL -eq 0 ]
|
321
321
|
then
|
322
|
-
echo -n "[
|
322
|
+
echo -n " [OK] "
|
323
323
|
else
|
324
324
|
GROUP_RETVAL=$(($GROUP_RETVAL+1))
|
325
|
-
echo -n "[
|
325
|
+
echo -n " [FAILED] "
|
326
326
|
fi
|
327
|
+
echo
|
327
328
|
}
|
328
329
|
|
329
330
|
stopall() {
|
@@ -475,7 +476,7 @@ case "$1" in
|
|
475
476
|
;;
|
476
477
|
|
477
478
|
*)
|
478
|
-
echo $"Usage: $0 {
|
479
|
+
echo $"Usage: $0 {startall|stopall|restartall|condrestartall|status|startuser <username>|stopuser <username>}"
|
479
480
|
exit 1
|
480
481
|
esac
|
481
482
|
|
data/misc/bin/rhcsh
CHANGED
@@ -53,9 +53,20 @@ EOF
|
|
53
53
|
|
54
54
|
function ctl_all {
|
55
55
|
case "$1" in
|
56
|
-
start)
|
57
|
-
|
58
|
-
|
56
|
+
start)
|
57
|
+
echo "Starting services"
|
58
|
+
start_app.sh
|
59
|
+
;;
|
60
|
+
stop)
|
61
|
+
echo "Stopping services"
|
62
|
+
stop_app.sh
|
63
|
+
;;
|
64
|
+
restart)
|
65
|
+
echo "Stopping services"
|
66
|
+
stop_app.sh;
|
67
|
+
echo "Starting services"
|
68
|
+
start_app.sh
|
69
|
+
;;
|
59
70
|
esac
|
60
71
|
}
|
61
72
|
|
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
Summary: Cloud Development Node
|
14
14
|
Name: rubygem-%{gem_name}
|
15
|
-
Version: 1.3.
|
15
|
+
Version: 1.3.3
|
16
16
|
Release: 1%{?dist}
|
17
17
|
Group: Development/Languages
|
18
18
|
License: ASL 2.0
|
@@ -174,6 +174,15 @@ if ! [ -f /etc/openshift/resource_limits.conf ]; then
|
|
174
174
|
fi
|
175
175
|
|
176
176
|
%changelog
|
177
|
+
* Mon Jan 14 2013 Adam Miller <admiller@redhat.com> 1.3.3-1
|
178
|
+
- Fix BZ875200: Add statements to rhcsh ctl_all (pmorie@gmail.com)
|
179
|
+
- Merge pull request #1141 from pmorie/bugs/877306
|
180
|
+
(dmcphers+openshiftbot@redhat.com)
|
181
|
+
- Merge pull request #1140 from pmorie/bugs/877305
|
182
|
+
(dmcphers+openshiftbot@redhat.com)
|
183
|
+
- Fix usage for oo-admin-ctl-cgroups (pmorie@gmail.com)
|
184
|
+
- Add newline to each user for oo-admin-ctl-cgroups stopall (pmorie@gmail.com)
|
185
|
+
|
177
186
|
* Thu Jan 10 2013 Adam Miller <admiller@redhat.com> 1.3.2-1
|
178
187
|
- Merge pull request #1120 from sosiouxme/BZ876324
|
179
188
|
(dmcphers+openshiftbot@redhat.com)
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openshift-origin-node
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 29
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 1.3.
|
9
|
+
- 3
|
10
|
+
version: 1.3.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Krishna Raman
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2013-01-
|
18
|
+
date: 2013-01-14 00:00:00 -05:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|