dyntool 0.0.19 → 0.0.20
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.
- data/lib/dyntool.rb +3 -3
- metadata +2 -2
data/lib/dyntool.rb
CHANGED
|
@@ -58,9 +58,9 @@ class Utils
|
|
|
58
58
|
return(@creds)
|
|
59
59
|
end
|
|
60
60
|
# check if dyn.yaml configuration is same as commited in svn
|
|
61
|
-
def SvnChk
|
|
61
|
+
def SvnChk(uid)
|
|
62
62
|
@rep_uid = `svn info | grep "Repository UUID" | awk '{ print $3 }' 2>/dev/null`
|
|
63
|
-
if @rep_uid.chomp != "
|
|
63
|
+
if @rep_uid.chomp != "#{uid}"
|
|
64
64
|
abort("You are not in a directory that checkout to authorized SVN")
|
|
65
65
|
end
|
|
66
66
|
@svn_chk=`svn stat dyn.yml`
|
|
@@ -402,7 +402,7 @@ class Parameters
|
|
|
402
402
|
|
|
403
403
|
* revert: Reverting a state of geo service to yaml state *
|
|
404
404
|
|
|
405
|
-
revert geoservice
|
|
405
|
+
revert geoservice example: dynamo.rb revert geo15
|
|
406
406
|
|
|
407
407
|
|
|
408
408
|
* get: Getting infotmation of geo services, geonodes, cname pointing to geo *
|