Remove unneeded packer statements

pull/5/head
Richard van den Berg 2018-09-19 17:00:59 +02:00
parent c0ab0176e7
commit 8678a7ca56
1 changed files with 1 additions and 10 deletions

View File

@ -6,8 +6,6 @@
},
"builders": [{
"type": "amazon-ebs",
"access_key": "{{user `aws_access_key`}}",
"secret_key": "{{user `aws_secret_key`}}",
"region": "eu-west-1",
"ami_groups": "all",
"source_ami_filter": {
@ -31,14 +29,7 @@
"provisioners": [
{
"type": "shell",
"execute_command": "echo '{{user `ssh_pass`}}' | {{ .Vars }} sudo -E -S sh '{{ .Path }}'",
"inline":[
"echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers"
]
},
{
"type": "shell",
"execute_command" : "echo '{{user `ssh_pass`}}' | {{ .Vars }} sudo -E -S sh '{{ .Path }}'",
"execute_command" : "{{ .Vars }} sudo -E sh '{{ .Path }}'",
"script": "/home/ubuntu/misp/bootstrap",
"pause_before": "10s"
}