This repository was archived by the owner on Apr 26, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +9
-9
lines changed
private/db_migration/versions Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -696,7 +696,7 @@ def _204_205(c):
696
696
c ["auxiliary" ]["mitm" ]["script" ] = "stuff/mitm.py"
697
697
return c
698
698
699
- def _205_210 (c ):
699
+ def _205_206 (c ):
700
700
c ["cuckoo" ]["remotecontrol" ] = {
701
701
"enabled" : False ,
702
702
"guacd_host" : "localhost" ,
@@ -722,7 +722,7 @@ def _205_210(c):
722
722
"2.0.2" : ("2.0.3" , None ),
723
723
"2.0.3" : ("2.0.4" , _203_204 ),
724
724
"2.0.4" : ("2.0.5" , _204_205 ),
725
- "2.0.5" : ("2.1.0 " , _205_210 ),
725
+ "2.0.5" : ("2.0.6 " , _205_206 ),
726
726
727
727
# We're also capable of migrating away from 2.0-dev which basically means
728
728
# that we might have to a partial migration from either 2.0-rc2 or 2.0-rc1.
Original file line number Diff line number Diff line change 33
33
34
34
# Normalized Cuckoo version (i.e., "2.0.5.3" in setup is "2.0.5" here). This
35
35
# because we use StrictVersion() later on which doesn't accept "2.0.5.3".
36
- version = "2.0.5 "
36
+ version = "2.0.6 "
37
37
38
38
def set_cwd (path , raw = None ):
39
39
global _root , _raw
Original file line number Diff line number Diff line change 2
2
# This file is part of Cuckoo Sandbox - http://www.cuckoosandbox.org
3
3
# See the file 'docs/LICENSE' for copying permission.
4
4
5
- """add rcparams field to machine (from Cuckoo 2.0.5.3 to 2.1 )
5
+ """add rcparams field to machine (from Cuckoo 2.0.5 to 2.0.6 )
6
6
7
7
Revision ID: cb1024e614b7
8
8
Revises: 181be2111077
Original file line number Diff line number Diff line change 47
47
# built documents.
48
48
#
49
49
# The short X.Y version.
50
- version = '2.0.5 '
50
+ version = '2.0.6 '
51
51
# The full version, including alpha/beta/rc tags.
52
- release = '2.0.5 '
52
+ release = '2.0.6 '
53
53
54
54
# The language for content autogenerated by Sphinx. Refer to documentation
55
55
# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ def do_setup(**kwargs):
149
149
150
150
do_setup (
151
151
name = "Cuckoo" ,
152
- version = "2.0.5.3 " ,
152
+ version = "2.0.6 " ,
153
153
author = "Stichting Cuckoo Foundation" ,
154
154
author_email = "cuckoo@cuckoofoundation.org" ,
155
155
packages = [
Original file line number Diff line number Diff line change @@ -1128,7 +1128,7 @@ def test_migration_204_205():
1128
1128
1129
1129
assert cfg ["auxiliary" ]["mitm" ]["script" ] == "stuff/mitm.py"
1130
1130
1131
- def test_migration_205_210 ():
1131
+ def test_migration_205_206 ():
1132
1132
set_cwd (tempfile .mkdtemp ())
1133
1133
Folders .create (cwd (), "conf" )
1134
1134
@@ -1142,7 +1142,7 @@ def test_migration_205_210():
1142
1142
mode = headless
1143
1143
""" )
1144
1144
cfg = Config .from_confdir (cwd ("conf" ), loose = True )
1145
- cfg = migrate (cfg , "2.0.5" , "2.1.0 " )
1145
+ cfg = migrate (cfg , "2.0.5" , "2.0.6 " )
1146
1146
1147
1147
assert cfg ["cuckoo" ]["remotecontrol" ]["enabled" ] == False
1148
1148
assert cfg ["cuckoo" ]["remotecontrol" ]["guacd_host" ] == "localhost"
You can’t perform that action at this time.
0 commit comments