Skip to content

Commit cb643d5

Browse files
eggmasterjeckersb
authored andcommitted
Bug 852400 - aeolus-upgrade fails to start postgresql and conductor-delayed_job service
The second stage of the current upgrade set leaves aeolus services running after running aeolus-configure. The correct behaviour is to leave services stopped as they are at the beginning of each upgrade stage. A future enhancement will prompt $user at end of upgrade process to optionally restart aeolus services. Signed-off-by: John Eckersberg <jeckersb@redhat.com>
1 parent a4eaeee commit cb643d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/upgrade-scripts/default/0002_run_aeolus-configure.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
#name: Execute aeolus-configure
44
#apply: aeolus-conductor
5-
#description: Executes aeolus-configure. Note: this restarts aeolus services. Skip this step if you want to manually run aeolus-configure later.
5+
#description: Executes aeolus-configure, but stops aeolus services before exiting
66

77
# default configuration values (should be the same as in our sysv init script)
88
if [ -f /etc/sysconfig/aeolus-conductor ]; then . /etc/sysconfig/aeolus-conductor; fi
99

1010
aeolus-configure 2>&1
1111
ret_code=$?
12-
12+
aeolus-services stop
1313
exit $ret_code

0 commit comments

Comments
 (0)