Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
88195943
Commit
88195943
authored
Dec 19, 2013
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
command/fix: fix for overrides
parent
5e2f08de
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
156 additions
and
0 deletions
+156
-0
command/fix/fixer.go
command/fix/fixer.go
+2
-0
command/fix/fixer_pp_vagrant_override.go
command/fix/fixer_pp_vagrant_override.go
+75
-0
command/fix/fixer_pp_vagrant_override_test.go
command/fix/fixer_pp_vagrant_override_test.go
+79
-0
No files found.
command/fix/fixer.go
View file @
88195943
...
...
@@ -22,6 +22,7 @@ func init() {
Fixers
=
map
[
string
]
Fixer
{
"iso-md5"
:
new
(
FixerISOMD5
),
"createtime"
:
new
(
FixerCreateTime
),
"pp-vagrant-override"
:
new
(
FixerVagrantPPOverride
),
"virtualbox-gaattach"
:
new
(
FixerVirtualBoxGAAttach
),
}
...
...
@@ -29,5 +30,6 @@ func init() {
"iso-md5"
,
"createtime"
,
"virtualbox-gaattach"
,
"pp-vagrant-override"
,
}
}
command/fix/fixer_pp_vagrant_override.go
0 → 100644
View file @
88195943
package
fix
import
(
"github.com/mitchellh/mapstructure"
)
// FixerVagrantPPOvveride is a Fixer that replaces the provider-specific
// overrides for the Vagrant post-processor with the new style introduced
// as part of Packer 0.5.0.
type
FixerVagrantPPOverride
struct
{}
func
(
FixerVagrantPPOverride
)
Fix
(
input
map
[
string
]
interface
{})
(
map
[
string
]
interface
{},
error
)
{
// Our template type we'll use for this fixer only
type
template
struct
{
PostProcessors
[]
interface
{}
`mapstructure:"post-processors"`
}
// Decode the input into our structure, if we can
var
tpl
template
if
err
:=
mapstructure
.
Decode
(
input
,
&
tpl
);
err
!=
nil
{
return
nil
,
err
}
// Go through each post-processor and get out all the complex configs
pps
:=
make
([]
map
[
string
]
interface
{},
0
,
len
(
tpl
.
PostProcessors
))
for
_
,
rawPP
:=
range
tpl
.
PostProcessors
{
switch
pp
:=
rawPP
.
(
type
)
{
case
string
:
case
map
[
string
]
interface
{}
:
pps
=
append
(
pps
,
pp
)
case
[]
interface
{}
:
for
_
,
innerRawPP
:=
range
pp
{
if
innerPP
,
ok
:=
innerRawPP
.
(
map
[
string
]
interface
{});
ok
{
pps
=
append
(
pps
,
innerPP
)
}
}
}
}
// Go through each post-processor and make the fix if necessary
possible
:=
[]
string
{
"aws"
,
"digitalocean"
,
"virtualbox"
,
"vmware"
}
for
_
,
pp
:=
range
pps
{
typeRaw
,
ok
:=
pp
[
"type"
]
if
!
ok
{
continue
}
if
typeName
,
ok
:=
typeRaw
.
(
string
);
!
ok
{
continue
}
else
if
typeName
!=
"vagrant"
{
continue
}
overrides
:=
make
(
map
[
string
]
interface
{})
for
_
,
name
:=
range
possible
{
if
_
,
ok
:=
pp
[
name
];
!
ok
{
continue
}
overrides
[
name
]
=
pp
[
name
]
delete
(
pp
,
name
)
}
if
len
(
overrides
)
>
0
{
pp
[
"override"
]
=
overrides
}
}
input
[
"post-processors"
]
=
tpl
.
PostProcessors
return
input
,
nil
}
func
(
FixerVagrantPPOverride
)
Synopsis
()
string
{
return
`Fixes provider-specific overrides for Vagrant post-processor`
}
command/fix/fixer_pp_vagrant_override_test.go
0 → 100644
View file @
88195943
package
fix
import
(
"reflect"
"testing"
)
func
TestFixerVagrantPPOverride_Impl
(
t
*
testing
.
T
)
{
var
_
Fixer
=
new
(
FixerVagrantPPOverride
)
}
func
TestFixerVagrantPPOverride_Fix
(
t
*
testing
.
T
)
{
var
f
FixerVagrantPPOverride
input
:=
map
[
string
]
interface
{}{
"post-processors"
:
[]
interface
{}{
"foo"
,
map
[
string
]
interface
{}{
"type"
:
"vagrant"
,
"aws"
:
map
[
string
]
interface
{}{
"foo"
:
"bar"
,
},
},
map
[
string
]
interface
{}{
"type"
:
"vsphere"
,
},
[]
interface
{}{
map
[
string
]
interface
{}{
"type"
:
"vagrant"
,
"vmware"
:
map
[
string
]
interface
{}{
"foo"
:
"bar"
,
},
},
},
},
}
expected
:=
map
[
string
]
interface
{}{
"post-processors"
:
[]
interface
{}{
"foo"
,
map
[
string
]
interface
{}{
"type"
:
"vagrant"
,
"override"
:
map
[
string
]
interface
{}{
"aws"
:
map
[
string
]
interface
{}{
"foo"
:
"bar"
,
},
},
},
map
[
string
]
interface
{}{
"type"
:
"vsphere"
,
},
[]
interface
{}{
map
[
string
]
interface
{}{
"type"
:
"vagrant"
,
"override"
:
map
[
string
]
interface
{}{
"vmware"
:
map
[
string
]
interface
{}{
"foo"
:
"bar"
,
},
},
},
},
},
}
output
,
err
:=
f
.
Fix
(
input
)
if
err
!=
nil
{
t
.
Fatalf
(
"err: %s"
,
err
)
}
if
!
reflect
.
DeepEqual
(
output
,
expected
)
{
t
.
Fatalf
(
"unexpected: %#v
\n
expected: %#v
\n
"
,
output
,
expected
)
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment