diff options
-rwxr-xr-x | tools/ds-identify | 3 |
1 files changed, 2 insertions, 1 deletions
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} } |