mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-26 09:44:01 -04:00
22 lines
474 B
Go
22 lines
474 B
Go
// Copyright IBM Corp. 2013, 2025
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build go1.10
|
|
// +build go1.10
|
|
|
|
package compress
|
|
|
|
import (
|
|
"archive/tar"
|
|
"time"
|
|
)
|
|
|
|
func setHeaderFormat(header *tar.Header) {
|
|
// We have to set the Format explicitly for the googlecompute-import
|
|
// post-processor. Google Cloud only allows importing GNU tar format.
|
|
header.Format = tar.FormatGNU
|
|
header.AccessTime = time.Time{}
|
|
header.ModTime = time.Time{}
|
|
header.ChangeTime = time.Time{}
|
|
}
|