Skip to content

Commit

Permalink
[dist] changed obssigner from optional to required service
Browse files Browse the repository at this point in the history
  • Loading branch information
M0ses committed Apr 15, 2016
1 parent 734804d commit a22234c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dist/setup-appliance.sh
Expand Up @@ -405,7 +405,7 @@ function check_required_backend_services {
function check_recommended_backend_services {

[[ $SETUP_ONLY == 1 ]] && return
RECOMMENDED_SERVICES="obsdodup obsdeltastore"
RECOMMENDED_SERVICES="obsdodup obsdeltastore obssigner"

for srv in $RECOMMENDED_SERVICES;do
STATE=$(chkconfig $srv|awk '{print $2}')
Expand All @@ -424,7 +424,7 @@ function check_recommended_backend_services {
function check_optional_backend_services {

[[ $SETUP_ONLY == 1 ]] && return
OPTIONAL_SERVICES="obswarden obssigner obsapisetup obsstoragesetup obsworker"
OPTIONAL_SERVICES="obswarden obsapisetup obsstoragesetup obsworker"

for srv in $OPTIONAL_SERVICES;do
STATE=$(chkconfig $srv|awk '{print $2}')
Expand Down
3 changes: 2 additions & 1 deletion dist/t/0070-check_recommended_services.ts
Expand Up @@ -4,7 +4,7 @@ export BASH_TAP_ROOT=$(dirname $0)

. $(dirname $0)/bash-tap-bootstrap

plan tests 4
plan tests 6

MAX_WAIT=300

Expand All @@ -13,6 +13,7 @@ tmpcount=$MAX_WAIT
# Service enabled and started
for srv in \
obsdodup \
obssigner \
obsdeltastore
do
STATE=` systemctl is-enabled $srv\.service 2>/dev/null`
Expand Down

0 comments on commit a22234c

Please sign in to comment.