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
500d83b6
Commit
500d83b6
authored
Feb 09, 2015
by
Alexander Golovko
Committed by
Mitchell Hashimoto
Jun 15, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add download support to file provisioner
parent
8ecca2aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
0 deletions
+43
-0
provisioner/file/provisioner.go
provisioner/file/provisioner.go
+43
-0
No files found.
provisioner/file/provisioner.go
View file @
500d83b6
...
...
@@ -20,6 +20,9 @@ type Config struct {
// The remote path where the local file will be uploaded to.
Destination
string
// Direction
Direction
string
ctx
interpolate
.
Context
}
...
...
@@ -38,12 +41,28 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
return
err
}
if
p
.
config
.
Direction
==
""
{
p
.
config
.
Direction
=
"upload"
}
var
errs
*
packer
.
MultiError
if
_
,
err
:=
os
.
Stat
(
p
.
config
.
Source
);
err
!=
nil
{
errs
=
packer
.
MultiErrorAppend
(
errs
,
fmt
.
Errorf
(
"Bad source '%s': %s"
,
p
.
config
.
Source
,
err
))
}
if
p
.
config
.
Direction
!=
"download"
&&
p
.
config
.
Direction
!=
"upload"
{
errs
=
packer
.
MultiErrorAppend
(
errs
,
errors
.
New
(
"Direction must be one of: download, upload."
))
}
if
p
.
config
.
Direction
==
"upload"
{
if
_
,
err
:=
os
.
Stat
(
p
.
config
.
Source
);
err
!=
nil
{
errs
=
packer
.
MultiErrorAppend
(
errs
,
fmt
.
Errorf
(
"Bad source '%s': %s"
,
p
.
config
.
Source
,
err
))
}
}
if
p
.
config
.
Destination
==
""
{
errs
=
packer
.
MultiErrorAppend
(
errs
,
errors
.
New
(
"Destination must be specified."
))
...
...
@@ -57,6 +76,30 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
}
func
(
p
*
Provisioner
)
Provision
(
ui
packer
.
Ui
,
comm
packer
.
Communicator
)
error
{
if
p
.
config
.
Direction
==
"download"
{
return
p
.
ProvisionDownload
(
ui
,
comm
)
}
else
{
return
p
.
ProvisionUpload
(
ui
,
comm
)
}
}
func
(
p
*
Provisioner
)
ProvisionDownload
(
ui
packer
.
Ui
,
comm
packer
.
Communicator
)
error
{
ui
.
Say
(
fmt
.
Sprintf
(
"Downloading %s => %s"
,
p
.
config
.
Source
,
p
.
config
.
Destination
))
f
,
err
:=
os
.
OpenFile
(
p
.
config
.
Destination
,
os
.
O_CREATE
|
os
.
O_WRONLY
|
os
.
O_TRUNC
,
0644
)
if
err
!=
nil
{
return
err
}
defer
f
.
Close
()
err
=
comm
.
Download
(
p
.
config
.
Source
,
f
)
if
err
!=
nil
{
ui
.
Error
(
fmt
.
Sprintf
(
"Download failed: %s"
,
err
))
}
return
err
}
func
(
p
*
Provisioner
)
ProvisionUpload
(
ui
packer
.
Ui
,
comm
packer
.
Communicator
)
error
{
ui
.
Say
(
fmt
.
Sprintf
(
"Uploading %s => %s"
,
p
.
config
.
Source
,
p
.
config
.
Destination
))
info
,
err
:=
os
.
Stat
(
p
.
config
.
Source
)
if
err
!=
nil
{
...
...
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