From 20a628c122583e159782c88547128fec1983376c Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Thu, 23 Mar 2017 16:32:32 -0400 Subject: ds-identify: fix detection of Bigstep datasource. The path for checking presence of Bigstep datasource was simply wrong. Set the correct path. LP: #1674766 --- tools/ds-identify | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/ds-identify b/tools/ds-identify index 6f1e983d..b3220c1f 100755 --- a/tools/ds-identify +++ b/tools/ds-identify @@ -633,7 +633,8 @@ dscheck_Azure() { dscheck_Bigstep() { # bigstep is activated by presense of seed file 'url' - check_seed_dir "bigstep" url && return ${DS_FOUND} + [ -f "${PATH_VAR_LIB_CLOUD}/data/seed/bigstep/url" ] && + return ${DS_FOUND} return ${DS_NOT_FOUND} } -- cgit v1.2.3