Adding missing hyphen to sudo options
This commit is contained in:
parent
8e69403735
commit
a4cfd921f4
|
@ -80,7 +80,7 @@ func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if b.config.BundleVolCommand == "" {
|
if b.config.BundleVolCommand == "" {
|
||||||
b.config.BundleVolCommand = "sudo i -n ec2-bundle-vol " +
|
b.config.BundleVolCommand = "sudo -i -n ec2-bundle-vol " +
|
||||||
"-k {{.KeyPath}} " +
|
"-k {{.KeyPath}} " +
|
||||||
"-u {{.AccountId}} " +
|
"-u {{.AccountId}} " +
|
||||||
"-c {{.CertPath}} " +
|
"-c {{.CertPath}} " +
|
||||||
|
|
|
@ -270,7 +270,7 @@ is responsible for executing `ec2-bundle-vol` in order to store and image
|
||||||
of the root filesystem to use to create the AMI.
|
of the root filesystem to use to create the AMI.
|
||||||
|
|
||||||
```text
|
```text
|
||||||
sudo i -n ec2-bundle-vol \
|
sudo -i -n ec2-bundle-vol \
|
||||||
-k {{.KeyPath}} \
|
-k {{.KeyPath}} \
|
||||||
-u {{.AccountId}} \
|
-u {{.AccountId}} \
|
||||||
-c {{.CertPath}} \
|
-c {{.CertPath}} \
|
||||||
|
@ -297,7 +297,7 @@ across multiple lines for convenience of reading. The bundle upload command
|
||||||
is responsible for taking the bundled volume and uploading it to S3.
|
is responsible for taking the bundled volume and uploading it to S3.
|
||||||
|
|
||||||
```text
|
```text
|
||||||
sudo i -n ec2-upload-bundle \
|
sudo -i -n ec2-upload-bundle \
|
||||||
-b {{.BucketName}} \
|
-b {{.BucketName}} \
|
||||||
-m {{.ManifestPath}} \
|
-m {{.ManifestPath}} \
|
||||||
-a {{.AccessKey}} \
|
-a {{.AccessKey}} \
|
||||||
|
|
Loading…
Reference in New Issue