GithubHelp home page GithubHelp logo

devops-intro-project's Introduction

Instructions for Practice Project

These instructions assume familiarity with Git and GitHub. If you are not comfortable with those tools, please complete Udacity's How to Use Git and GitHub course before proceeding.

After installing the required tools, you will need to ensure that your computer can find the executables to run them. For this, you might need to modify the PATH environment variable. A good overview is at superuser.com. You may need to search the web for instructions on how to set the PATH variable for your specific operating system and version.

Setting up your local machine

  • Install VirtualBox
  • Install Vagrant
  • Install Packer
  • Fork this repo to your own account
  • Clone the forked repo to your local machine using this command: git clone http://github.com/<account-name>/devops-intro-project devops, replacing <account-name> with your GitHub username.

Part I: Building a box with Packer

  • Run cd packer-templates
  • Run packer build -only=virtualbox-iso application-server.json. You may see various timeouts and errors, as shown below. If you do, retry the command until the ISO download succeeds:
read: operation timed out
==> virtualbox-iso: ISO download failed.
Build 'virtualbox-iso' errored: ISO download failed.

checksums didn't match expected
==> virtualbox-iso: ISO download failed.
Build 'virtualbox-iso' errored: ISO download failed.

==> Some builds didn't complete successfully and had errors:
--> virtualbox-iso: ISO download failed.
  • Run cd virtualbox
  • Run vagrant box add ubuntu-14.04.6-server-amd64-appserver_virtualbox.box --name devops-appserver
  • Run vagrant up
  • Run vagrant ssh to connect to the server

Part II: Cloning, developing, and running the web application

  • On your local machine go to the root directory of the cloned repository
  • Run git clone https://github.com/chef/devops-kungfu.git devops-kungfu
  • Open http://localhost:8080 from your local machine to see the app running.
  • In the VM, run cd devops-kungfu
  • To install app specific node packages, run sudo npm install. You may see several errors; they can be ignored for now.
  • Now you can run tests with the command grunt -v. The tests will run, then quit with an error.

Troubleshooting

If you encounter errors with Ubuntu version numbers not being available or checksum errors on Ubuntu,it means that this repository has not yet been updated for the latest Ubuntu version. Feel free to mention this in the forum. Meanwhile, you can fix this error for yourself by editing the contents of the application-server.json and control-server.json template files inside the packer-templates folder.

  • Find the newest version number and checksum from the Ubuntu website for this release
  • Edit PACKER_BOX_NAME and iso_checksum in the template files to match that version number and checksum.

devops-intro-project's People

Contributors

13rac1 avatar crewe avatar csgray avatar gauravsinghaec avatar ghasemel avatar karlud avatar kirkbrunson avatar mrunal4 avatar pradheep-arul avatar simplydallas avatar sudkul avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

devops-intro-project's Issues

Help wanted

Being a windows user , am facing issues after installing Virtual Box and thus running something on it
Can you tell me or guide me how should I proceed?

jenkins public key is not available

I had this error:

==> amazon-ebs: W: GPG error: http://pkg.jenkins-ci.org/debian binary/ Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY FCEF32E745F2C3D5
==> amazon-ebs: E: The repository 'http://pkg.jenkins-ci.org/debian binary/ Release' is not signed.
amazon-ebs: Reading package lists...

the solution to it was modifying these two lines in jenkins.sh file:
wget -q -O - https://jenkins-ci.org/debian/jenkins-ci.org.key | apt-key add - echo deb http://pkg.jenkins-ci.org/debian binary/ > /etc/apt/sources.list.d/jenkins.list

to this:
wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add - sudo sh -c 'echo deb https://pkg.jenkins.io/debian-stable binary/ > \ /etc/apt/sources.list.d/jenkins.list'

Error waiting for SSH: Packer experienced an authentication error when trying to connect via SSH.

Command executed: packer build -only=virtualbox-iso application-server.json

The VM was created. I selected openSSH while installing. But after sometime te following errors flashed and the VM was automatically deleted

==> virtualbox-iso: Waiting for SSH to become available...
==> virtualbox-iso: Error waiting for SSH: Packer experienced an authentication error when trying to connect via SSH. This can happen if your username/password are wrong. You may want to double-check your credentials as part of your debugging process. original error: ssh: handshake failed: ssh: unable to authenticate, attempted methods [none password], no supported methods remain
==> virtualbox-iso: Deregistering and deleting VM...
==> virtualbox-iso: Deleting output directory...
Build 'virtualbox-iso' errored: Packer experienced an authentication error when trying to connect via SSH. This can happen if your username/password are wrong. You may want to double-check your credentials as part of your debugging process. original error: ssh: handshake failed: ssh: unable to authenticate, attempted methods [none password], no supported methods remain

packer build

=> Builds finished but no artifacts were created.
jferreira@jferreira-VirtualBox ~/git/devops-intro-project-1/packer-templates $ packer build -only=virtualbox-iso application-server.json
virtualbox-iso output will be in this color.

==> virtualbox-iso: Downloading or copying Guest additions
virtualbox-iso: Downloading or copying: file:///usr/share/virtualbox/VBoxGuestAdditions.iso
==> virtualbox-iso: Downloading or copying ISO
virtualbox-iso: Downloading or copying: http://releases.ubuntu.com/trusty/ubuntu-14.04.4-server-amd64.iso
==> virtualbox-iso: Starting HTTP server on port 8513
==> virtualbox-iso: Creating virtual machine...
==> virtualbox-iso: Creating hard drive...
==> virtualbox-iso: Creating forwarded port mapping for communicator (SSH, WinRM, etc) (host port 4279)
==> virtualbox-iso: Executing custom VBoxManage commands...
virtualbox-iso: Executing: modifyvm ubuntu-14.04.4-server-amd64 --memory 512
virtualbox-iso: Executing: modifyvm ubuntu-14.04.4-server-amd64 --cpus 1
==> virtualbox-iso: Starting the virtual machine...
==> virtualbox-iso: Error starting VM: VBoxManage error: VBoxManage: error: Could not launch a process for the machine 'ubuntu-14.04.4-server-amd64' (VERR_FILE_NOT_FOUND)
==> virtualbox-iso: VBoxManage: error: Details: code VBOX_E_IPRT_ERROR (0x80bb0005), component MachineWrap, interface IMachine, callee nsISupports
==> virtualbox-iso: VBoxManage: error: Context: "LaunchVMProcess(a->session, sessionType.raw(), env.raw(), progress.asOutParam())" at line 589 of file VBoxManageMisc.cpp
==> virtualbox-iso: Unregistering and deleting virtual machine...
==> virtualbox-iso: Deleting output directory...
Build 'virtualbox-iso' errored: Error starting VM: VBoxManage error: VBoxManage: error: Could not launch a process for the machine 'ubuntu-14.04.4-server-amd64' (VERR_FILE_NOT_FOUND)
VBoxManage: error: Details: code VBOX_E_IPRT_ERROR (0x80bb0005), component MachineWrap, interface IMachine, callee nsISupports
VBoxManage: error: Context: "LaunchVMProcess(a->session, sessionType.raw(), env.raw(), progress.asOutParam())" at line 589 of file VBoxManageMisc.cpp

==> Some builds didn't complete successfully and had errors:
--> virtualbox-iso: Error starting VM: VBoxManage error: VBoxManage: error: Could not launch a process for the machine 'ubuntu-14.04.4-server-amd64' (VERR_FILE_NOT_FOUND)
VBoxManage: error: Details: code VBOX_E_IPRT_ERROR (0x80bb0005), component MachineWrap, interface IMachine, callee nsISupports
VBoxManage: error: Context: "LaunchVMProcess(a->session, sessionType.raw(), env.raw(), progress.asOutParam())" at line 589 of file VBoxManageMisc.cpp

==> Builds finished but no artifacts were created.

I've this error . any ideas?

Unable to download ISO file

Hi Team, I am getting the following error while building the box with packer.

$ packer build -only=virtualbox-iso application-server.json
virtualbox-iso output will be in this color.
==> virtualbox-iso: Retrieving Guest additions
==> virtualbox-iso: Trying C:\Program Files\Oracle\VirtualBox/VBoxGuestAdditions.iso
==> virtualbox-iso: Trying file://C:/Program%20Files/Oracle/VirtualBox/VBoxGuestAdditions.iso
==> virtualbox-iso: file://C:/Program%20Files/Oracle/VirtualBox/VBoxGuestAdditions.iso => C:\Users\707021\devops\packer-templates\packer_cache\afa7695602909b267b26b23c8aefe12db6ee78b2.iso
==> virtualbox-iso: Retrieving ISO
==> virtualbox-iso: Trying http://releases.ubuntu.com/trusty/ubuntu-14.04.6-server-amd64.iso
==> virtualbox-iso: Trying http://releases.ubuntu.com/trusty/ubuntu-14.04.6-server-amd64.iso?checksum=sha256%3Ab17d7c1e9d0321ad5810ba77b69aef43f0f29a5422b08120e6ee0576c4527c0e
==> virtualbox-iso: Download failed Get http://releases.ubuntu.com/trusty/ubuntu-14.04.6-server-amd64.iso: dial tcp 91.189.88.148:80: connectex: No connection could be made because the target machine actively refused it.
==> virtualbox-iso: error downloading ISO: [Get http://releases.ubuntu.com/trusty/ubuntu-14.04.6-server-amd64.iso: dial tcp 91.189.88.148:80: connectex: No connection could be made because the target machine actively refused it.]
Build 'virtualbox-iso' errored: error downloading ISO: [Get http://releases.ubuntu.com/trusty/ubuntu-14.04.6-server-amd64.iso: dial tcp 91.189.88.148:80: connectex: No connection could be made because the target machine actively refused it.]

==> Some builds didn't complete successfully and had errors:
--> virtualbox-iso: error downloading ISO: [Get http://releases.ubuntu.com/trusty/ubuntu-14.04.6-server-amd64.iso: dial tcp 91.189.88.148:80: connectex: No connection could be made because the target machine actively refused it.]

==> Builds finished but no artifacts were created.

Alternatively, I was bale to download the iso file manually and have it on my local machine. Can i enable packer to refer the ISO file directly for its build?

Issues ubuntu-14.04.6-server-amd64-appserver_virtualbox.box

Hello, I got an error runing the following command:
vagrant box add ubuntu-14.04.6-server-amd64-appserver_virtualbox.box --name devops-appserver

See bellow response:
crashman83@kelvin-MacBookPro:~/Documents/devops/packer-templates/virtualbox$ sudo vagrant box add ubuntu-14.04.6-server-amd64-appserver_virtualbox.box --name devops-appserver
==> box: Box file was not detected as metadata. Adding it directly...
==> box: Adding box 'devops-appserver' (v0) for provider:
box: Downloading: ubuntu-14.04.6-server-amd64-appserver_virtualbox.box
An error occurred while downloading the remote file. The error message, if any, is reproduced below. Please fix this error and try
again.

Couldn't open file /home/crashman83/Documents/devops/packer-templates/virtualbox/ubuntu-14.04.6-server-amd64-appserver_virtualbox.box

Broken Jenkins install on AWS

Trying to run the jenkins packer script results in the following error.

% packer build --only=amazon-ebs control-server.json
amazon-ebs output will be in this color.

==> amazon-ebs: Prevalidating AMI Name...
==> amazon-ebs: Inspecting the source AMI...
==> amazon-ebs: Creating temporary keypair: packer 56a9b79e-8b3c-9630-1fed-3c57cf6cf0c4
==> amazon-ebs: Creating temporary security group for this instance...
==> amazon-ebs: Authorizing access to port 22 the temporary security group...
==> amazon-ebs: Launching a source AWS instance...
amazon-ebs: Instance ID: i-df522056
==> amazon-ebs: Waiting for instance (i-df522056) to become ready...
==> amazon-ebs: Waiting for SSH to become available...
==> amazon-ebs: Connected to SSH!
==> amazon-ebs: Provisioning with shell script: scripts/update.sh
amazon-ebs: Get:1 http://security.ubuntu.com trusty-security InRelease [64.4 kB]
amazon-ebs: Ign http://archive.ubuntu.com trusty InRelease
amazon-ebs: Get:2 http://archive.ubuntu.com trusty-updates InRelease [64.4 kB]
amazon-ebs: Hit http://archive.ubuntu.com trusty Release.gpg
amazon-ebs: Hit http://archive.ubuntu.com trusty Release
amazon-ebs: Get:3 http://security.ubuntu.com trusty-security/main amd64 Packages [410 kB]
amazon-ebs: Get:4 http://archive.ubuntu.com trusty-updates/main amd64 Packages [689 kB]
amazon-ebs: Get:5 http://archive.ubuntu.com trusty-updates/restricted amd64 Packages [15.9 kB]
amazon-ebs: Get:6 http://archive.ubuntu.com trusty-updates/universe amd64 Packages [334 kB]
amazon-ebs: Get:7 http://archive.ubuntu.com trusty-updates/multiverse amd64 Packages [13.0 kB]
amazon-ebs: Get:8 http://archive.ubuntu.com trusty-updates/main Translation-en [348 kB]
amazon-ebs: Get:9 http://archive.ubuntu.com trusty-updates/multiverse Translation-en [6832 B]
amazon-ebs: Get:10 http://archive.ubuntu.com trusty-updates/restricted Translation-en [3699 B]
amazon-ebs: Get:11 http://archive.ubuntu.com trusty-updates/universe Translation-en [176 kB]
amazon-ebs: Hit http://archive.ubuntu.com trusty/main amd64 Packages
amazon-ebs: Hit http://archive.ubuntu.com trusty/restricted amd64 Packages
amazon-ebs: Hit http://archive.ubuntu.com trusty/universe amd64 Packages
amazon-ebs: Hit http://archive.ubuntu.com trusty/multiverse amd64 Packages
amazon-ebs: Hit http://archive.ubuntu.com trusty/main Translation-en
amazon-ebs: Hit http://archive.ubuntu.com trusty/multiverse Translation-en
amazon-ebs: Hit http://archive.ubuntu.com trusty/restricted Translation-en
amazon-ebs: Hit http://archive.ubuntu.com trusty/universe Translation-en
amazon-ebs: Get:12 http://security.ubuntu.com trusty-security/restricted amd64 Packages [13.0 kB]
amazon-ebs: Get:13 http://security.ubuntu.com trusty-security/universe amd64 Packages [123 kB]
amazon-ebs: Get:14 http://security.ubuntu.com trusty-security/multiverse amd64 Packages [4798 B]
amazon-ebs: Get:15 http://security.ubuntu.com trusty-security/main Translation-en [225 kB]
amazon-ebs: Get:16 http://security.ubuntu.com trusty-security/multiverse Translation-en [2437 B]
amazon-ebs: Get:17 http://security.ubuntu.com trusty-security/restricted Translation-en [3206 B]
amazon-ebs: Get:18 http://security.ubuntu.com trusty-security/universe Translation-en [72.1 kB]
amazon-ebs: Fetched 2569 kB in 17s (144 kB/s)
amazon-ebs: Reading package lists...
amazon-ebs: Reading package lists...
amazon-ebs: Building dependency tree...
amazon-ebs: Reading state information...
amazon-ebs: The following packages have been kept back:
amazon-ebs: linux-headers-generic linux-headers-virtual linux-image-virtual
amazon-ebs: linux-virtual
amazon-ebs: The following packages will be upgraded:
amazon-ebs: apport bind9-host curl dnsutils dpkg fuse grub-common grub-pc grub-pc-bin
amazon-ebs: grub2-common isc-dhcp-client isc-dhcp-common krb5-locales libbind9-90
amazon-ebs: libcurl3 libcurl3-gnutls libdns100 libexpat1 libfreetype6 libfuse2
amazon-ebs: libgnutls-openssl27 libgnutls26 libgssapi-krb5-2 libicu52 libisc95
amazon-ebs: libisccc90 libisccfg90 libk5crypto3 libkrb5-3 libkrb5support0 libldap-2.4-2
amazon-ebs: liblwres90 libpcre3 libpng12-0 libpython2.7 libpython2.7-minimal
amazon-ebs: libpython2.7-stdlib libpython3.4-minimal libpython3.4-stdlib libsqlite3-0
amazon-ebs: libssl1.0.0 libtasn1-6 libxext6 libxml2 linux-headers-3.13.0-49
amazon-ebs: linux-headers-3.13.0-49-generic linux-image-3.13.0-49-generic ntpdate
amazon-ebs: openssh-client openssh-server openssh-sftp-server openssl patch pollinate
amazon-ebs: ppp python2.7 python2.7-minimal python3-apport python3-problem-report
amazon-ebs: python3.4 python3.4-minimal rsync tcpdump tzdata unattended-upgrades
amazon-ebs: 65 upgraded, 0 newly installed, 0 to remove and 4 not upgraded.
amazon-ebs: Need to get 54.6 MB of archives.
amazon-ebs: After this operation, 28.7 kB of additional disk space will be used.
amazon-ebs: Get:1 http://security.ubuntu.com/ubuntu/ trusty-security/main dpkg amd64 1.17.5ubuntu5.5 [1953 kB]
amazon-ebs: Get:2 http://security.ubuntu.com/ubuntu/ trusty-security/main libpcre3 amd64 1:8.31-2ubuntu2.1 [144 kB]
amazon-ebs: Get:3 http://security.ubuntu.com/ubuntu/ trusty-security/main libexpat1 amd64 2.1.0-4ubuntu1.1 [71.1 kB]
amazon-ebs: Get:4 http://security.ubuntu.com/ubuntu/ trusty-security/main libtasn1-6 amd64 3.4-3ubuntu0.3 [43.6 kB]
amazon-ebs: Get:5 http://security.ubuntu.com/ubuntu/ trusty-security/main libgnutls-openssl27 amd64 2.12.23-12ubuntu2.4 [18.3 kB]
amazon-ebs: Get:6 http://security.ubuntu.com/ubuntu/ trusty-security/main libgnutls26 amd64 2.12.23-12ubuntu2.4 [393 kB]
amazon-ebs: Get:7 http://security.ubuntu.com/ubuntu/ trusty-security/main python3.4 amd64 3.4.0-2ubuntu1.1 [163 kB]
amazon-ebs: Get:8 http://security.ubuntu.com/ubuntu/ trusty-security/main python3.4-minimal amd64 3.4.0-2ubuntu1.1 [1274 kB]
amazon-ebs: Get:9 http://security.ubuntu.com/ubuntu/ trusty-security/main libsqlite3-0 amd64 3.8.2-1ubuntu2.1 [342 kB]
amazon-ebs: Get:10 http://security.ubuntu.com/ubuntu/ trusty-security/main libpython3.4-stdlib amd64 3.4.0-2ubuntu1.1 [2014 kB]
amazon-ebs: Get:11 http://security.ubuntu.com/ubuntu/ trusty-security/main libssl1.0.0 amd64 1.0.1f-1ubuntu2.16 [827 kB]
amazon-ebs: Get:12 http://security.ubuntu.com/ubuntu/ trusty-security/main libpython3.4-minimal amd64 3.4.0-2ubuntu1.1 [443 kB]
amazon-ebs: Get:13 http://security.ubuntu.com/ubuntu/ trusty-security/main ntpdate amd64 1:4.2.6.p5+dfsg-3ubuntu2.14.04.5 [57.0 kB]
amazon-ebs: Get:14 http://security.ubuntu.com/ubuntu/ trusty-security/main libpng12-0 amd64 1.2.50-1ubuntu2.14.04.2 [118 kB]
amazon-ebs: Get:15 http://security.ubuntu.com/ubuntu/ trusty-security/main libk5crypto3 amd64 1.12+dfsg-2ubuntu5.2 [79.4 kB]
amazon-ebs: Get:16 http://security.ubuntu.com/ubuntu/ trusty-security/main libgssapi-krb5-2 amd64 1.12+dfsg-2ubuntu5.2 [114 kB]
amazon-ebs: Get:17 http://security.ubuntu.com/ubuntu/ trusty-security/main libkrb5-3 amd64 1.12+dfsg-2ubuntu5.2 [262 kB]
amazon-ebs: Get:18 http://security.ubuntu.com/ubuntu/ trusty-security/main libkrb5support0 amd64 1.12+dfsg-2ubuntu5.2 [30.7 kB]
amazon-ebs: Get:19 http://security.ubuntu.com/ubuntu/ trusty-security/main libldap-2.4-2 amd64 2.4.31-1+nmu2ubuntu8.2 [153 kB]
amazon-ebs: Get:20 http://security.ubuntu.com/ubuntu/ trusty-security/main libcurl3-gnutls amd64 7.35.0-1ubuntu2.6 [165 kB]
amazon-ebs: Get:21 http://security.ubuntu.com/ubuntu/ trusty-security/main fuse amd64 2.9.2-4ubuntu4.14.04.1 [25.1 kB]
amazon-ebs: Get:22 http://security.ubuntu.com/ubuntu/ trusty-security/main libfuse2 amd64 2.9.2-4ubuntu4.14.04.1 [87.4 kB]
amazon-ebs: Get:23 http://security.ubuntu.com/ubuntu/ trusty-security/main libxext6 amd64 2:1.3.2-1ubuntu0.0.14.04.1 [28.8 kB]
amazon-ebs: Get:24 http://security.ubuntu.com/ubuntu/ trusty-security/main libxml2 amd64 2.9.1+dfsg1-3ubuntu4.7 [571 kB]
amazon-ebs: Get:25 http://security.ubuntu.com/ubuntu/ trusty-security/main curl amd64 7.35.0-1ubuntu2.6 [123 kB]
amazon-ebs: Get:26 http://security.ubuntu.com/ubuntu/ trusty-security/main libcurl3 amd64 7.35.0-1ubuntu2.6 [172 kB]
amazon-ebs: Get:27 http://security.ubuntu.com/ubuntu/ trusty-security/main libfreetype6 amd64 2.5.2-1ubuntu2.5 [304 kB]
amazon-ebs: Get:28 http://security.ubuntu.com/ubuntu/ trusty-security/main libicu52 amd64 52.1-3ubuntu0.4 [6752 kB]
amazon-ebs: Get:29 http://security.ubuntu.com/ubuntu/ trusty-security/main python2.7 amd64 2.7.6-8ubuntu0.2 [196 kB]
amazon-ebs: Get:30 http://security.ubuntu.com/ubuntu/ trusty-security/main libpython2.7 amd64 2.7.6-8ubuntu0.2 [1039 kB]
amazon-ebs: Get:31 http://security.ubuntu.com/ubuntu/ trusty-security/main libpython2.7-stdlib amd64 2.7.6-8ubuntu0.2 [1869 kB]
amazon-ebs: Get:32 http://security.ubuntu.com/ubuntu/ trusty-security/main python2.7-minimal amd64 2.7.6-8ubuntu0.2 [1185 kB]
amazon-ebs: Get:33 http://security.ubuntu.com/ubuntu/ trusty-security/main libpython2.7-minimal amd64 2.7.6-8ubuntu0.2 [308 kB]
amazon-ebs: Get:34 http://security.ubuntu.com/ubuntu/ trusty-security/main linux-image-3.13.0-49-generic amd64 3.13.0-49.83 [15.1 MB]
amazon-ebs: Get:35 http://security.ubuntu.com/ubuntu/ trusty-security/main tzdata all 2015g-0ubuntu0.14.04 [164 kB]
amazon-ebs: Get:36 http://security.ubuntu.com/ubuntu/ trusty-security/main isc-dhcp-client amd64 4.2.4-7ubuntu12.4 [640 kB]
amazon-ebs: Get:37 http://security.ubuntu.com/ubuntu/ trusty-security/main isc-dhcp-common amd64 4.2.4-7ubuntu12.4 [708 kB]
amazon-ebs: Get:38 http://security.ubuntu.com/ubuntu/ trusty-security/main bind9-host amd64 1:9.9.5.dfsg-3ubuntu0.7 [46.3 kB]
amazon-ebs: Get:39 http://security.ubuntu.com/ubuntu/ trusty-security/main dnsutils amd64 1:9.9.5.dfsg-3ubuntu0.7 [96.9 kB]
amazon-ebs: Get:40 http://security.ubuntu.com/ubuntu/ trusty-security/main libisc95 amd64 1:9.9.5.dfsg-3ubuntu0.7 [148 kB]
amazon-ebs: Get:41 http://security.ubuntu.com/ubuntu/ trusty-security/main libdns100 amd64 1:9.9.5.dfsg-3ubuntu0.7 [645 kB]
amazon-ebs: Get:42 http://security.ubuntu.com/ubuntu/ trusty-security/main libisccc90 amd64 1:9.9.5.dfsg-3ubuntu0.7 [15.7 kB]
amazon-ebs: Get:43 http://security.ubuntu.com/ubuntu/ trusty-security/main libisccfg90 amd64 1:9.9.5.dfsg-3ubuntu0.7 [36.2 kB]
amazon-ebs: Get:44 http://security.ubuntu.com/ubuntu/ trusty-security/main liblwres90 amd64 1:9.9.5.dfsg-3ubuntu0.7 [32.8 kB]
amazon-ebs: Get:45 http://security.ubuntu.com/ubuntu/ trusty-security/main libbind9-90 amd64 1:9.9.5.dfsg-3ubuntu0.7 [22.1 kB]
amazon-ebs: Get:46 http://security.ubuntu.com/ubuntu/ trusty-security/main krb5-locales all 1.12+dfsg-2ubuntu5.2 [13.6 kB]
amazon-ebs: Get:47 http://security.ubuntu.com/ubuntu/ trusty-security/main openssh-sftp-server amd64 1:6.6p1-2ubuntu2.4 [34.1 kB]
amazon-ebs: Get:48 http://security.ubuntu.com/ubuntu/ trusty-security/main openssh-server amd64 1:6.6p1-2ubuntu2.4 [320 kB]
amazon-ebs: Get:49 http://security.ubuntu.com/ubuntu/ trusty-security/main openssh-client amd64 1:6.6p1-2ubuntu2.4 [563 kB]
amazon-ebs: Get:50 http://security.ubuntu.com/ubuntu/ trusty-security/main openssl amd64 1.0.1f-1ubuntu2.16 [488 kB]
amazon-ebs: Get:51 http://security.ubuntu.com/ubuntu/ trusty-security/main ppp amd64 2.4.5-5.1ubuntu2.2 [311 kB]
amazon-ebs: Get:52 http://security.ubuntu.com/ubuntu/ trusty-security/main rsync amd64 3.1.0-2ubuntu0.2 [284 kB]
amazon-ebs: Get:53 http://security.ubuntu.com/ubuntu/ trusty-security/main tcpdump amd64 4.5.1-2ubuntu1.2 [355 kB]
amazon-ebs: Get:54 http://security.ubuntu.com/ubuntu/ trusty-security/main grub-pc amd64 2.02beta2-9ubuntu1.6 [173 kB]
amazon-ebs: Get:55 http://security.ubuntu.com/ubuntu/ trusty-security/main grub-pc-bin amd64 2.02
beta2-9ubuntu1.6 [881 kB]
amazon-ebs: Get:56 http://security.ubuntu.com/ubuntu/ trusty-security/main grub2-common amd64 2.02beta2-9ubuntu1.6 [501 kB]
amazon-ebs: Get:57 http://security.ubuntu.com/ubuntu/ trusty-security/main grub-common amd64 2.02
beta2-9ubuntu1.6 [1677 kB]
amazon-ebs: Get:58 http://security.ubuntu.com/ubuntu/ trusty-security/main python3-problem-report all 2.14.1-0ubuntu3.18 [9926 B]
amazon-ebs: Get:59 http://security.ubuntu.com/ubuntu/ trusty-security/main python3-apport all 2.14.1-0ubuntu3.18 [75.2 kB]
amazon-ebs: Get:60 http://security.ubuntu.com/ubuntu/ trusty-security/main apport all 2.14.1-0ubuntu3.18 [182 kB]
amazon-ebs: Get:61 http://security.ubuntu.com/ubuntu/ trusty-security/main linux-headers-3.13.0-49 all 3.13.0-49.83 [8878 kB]
amazon-ebs: Get:62 http://security.ubuntu.com/ubuntu/ trusty-security/main linux-headers-3.13.0-49-generic amd64 3.13.0-49.83 [699 kB]
amazon-ebs: Get:63 http://security.ubuntu.com/ubuntu/ trusty-security/main patch amd64 2.7.1-4ubuntu2.3 [86.4 kB]
amazon-ebs: Get:64 http://security.ubuntu.com/ubuntu/ trusty-security/main pollinate all 4.7-0ubuntu1.4 [14.5 kB]
amazon-ebs: Get:65 http://security.ubuntu.com/ubuntu/ trusty-security/main unattended-upgrades all 0.82.1ubuntu2.3 [25.5 kB]
amazon-ebs: debconf: unable to initialize frontend: Dialog
amazon-ebs: debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
amazon-ebs: debconf: falling back to frontend: Readline
amazon-ebs: debconf: unable to initialize frontend: Readline
amazon-ebs: debconf: (This frontend requires a controlling tty.)
amazon-ebs: debconf: falling back to frontend: Teletype
amazon-ebs: dpkg-preconfigure: unable to re-open stdin:
amazon-ebs: Fetched 54.6 MB in 4min 11s (218 kB/s)
amazon-ebs: (Reading database ... 51122 files and directories currently installed.)
amazon-ebs: Preparing to unpack .../dpkg_1.17.5ubuntu5.5_amd64.deb ...
amazon-ebs: Unpacking dpkg (1.17.5ubuntu5.5) over (1.17.5ubuntu5.3) ...
amazon-ebs: Processing triggers for man-db (2.6.7.1-1ubuntu1) ...
amazon-ebs: Setting up dpkg (1.17.5ubuntu5.5) ...
amazon-ebs: (Reading database ... 51122 files and directories currently installed.)
amazon-ebs: Preparing to unpack .../libpcre3_1%3a8.31-2ubuntu2.1_amd64.deb ...
amazon-ebs: Unpacking libpcre3:amd64 (1:8.31-2ubuntu2.1) over (1:8.31-2ubuntu2) ...
amazon-ebs: Processing triggers for man-db (2.6.7.1-1ubuntu1) ...
amazon-ebs: Setting up libpcre3:amd64 (1:8.31-2ubuntu2.1) ...
amazon-ebs: Processing triggers for libc-bin (2.19-0ubuntu6.6) ...
amazon-ebs: (Reading database ... 51122 files and directories currently installed.)
amazon-ebs: Preparing to unpack .../libexpat1_2.1.0-4ubuntu1.1_amd64.deb ...
amazon-ebs: Unpacking libexpat1:amd64 (2.1.0-4ubuntu1.1) over (2.1.0-4ubuntu1) ...
amazon-ebs: Preparing to unpack .../libtasn1-6_3.4-3ubuntu0.3_amd64.deb ...
amazon-ebs: Unpacking libtasn1-6:amd64 (3.4-3ubuntu0.3) over (3.4-3ubuntu0.2) ...
amazon-ebs: Preparing to unpack .../libgnutls-openssl27_2.12.23-12ubuntu2.4_amd64.deb ...
amazon-ebs: Unpacking libgnutls-openssl27:amd64 (2.12.23-12ubuntu2.4) over (2.12.23-12ubuntu2.2) ...
amazon-ebs: Preparing to unpack .../libgnutls26_2.12.23-12ubuntu2.4_amd64.deb ...
amazon-ebs: Unpacking libgnutls26:amd64 (2.12.23-12ubuntu2.4) over (2.12.23-12ubuntu2.2) ...
amazon-ebs: Preparing to unpack .../python3.4_3.4.0-2ubuntu1.1_amd64.deb ...
amazon-ebs: Unpacking python3.4 (3.4.0-2ubuntu1.1) over (3.4.0-2ubuntu1) ...
amazon-ebs: Preparing to unpack .../python3.4-minimal_3.4.0-2ubuntu1.1_amd64.deb ...
amazon-ebs: Unpacking python3.4-minimal (3.4.0-2ubuntu1.1) over (3.4.0-2ubuntu1) ...
amazon-ebs: Preparing to unpack .../libsqlite3-0_3.8.2-1ubuntu2.1_amd64.deb ...
amazon-ebs: Unpacking libsqlite3-0:amd64 (3.8.2-1ubuntu2.1) over (3.8.2-1ubuntu2) ...
amazon-ebs: Preparing to unpack .../libpython3.4-stdlib_3.4.0-2ubuntu1.1_amd64.deb ...
amazon-ebs: Unpacking libpython3.4-stdlib:amd64 (3.4.0-2ubuntu1.1) over (3.4.0-2ubuntu1) ...
amazon-ebs: Preparing to unpack .../libssl1.0.0_1.0.1f-1ubuntu2.16_amd64.deb ...
amazon-ebs: Unpacking libssl1.0.0:amd64 (1.0.1f-1ubuntu2.16) over (1.0.1f-1ubuntu2.11) ...
amazon-ebs: Preparing to unpack .../libpython3.4-minimal_3.4.0-2ubuntu1.1_amd64.deb ...
amazon-ebs: Unpacking libpython3.4-minimal:amd64 (3.4.0-2ubuntu1.1) over (3.4.0-2ubuntu1) ...
amazon-ebs: Preparing to unpack .../ntpdate_1%3a4.2.6.p5+dfsg-3ubuntu2.14.04.5_amd64.deb ...
amazon-ebs: Unpacking ntpdate (1:4.2.6.p5+dfsg-3ubuntu2.14.04.5) over (1:4.2.6.p5+dfsg-3ubuntu2.14.04.2) ...
amazon-ebs: Preparing to unpack .../libpng12-0_1.2.50-1ubuntu2.14.04.2_amd64.deb ...
amazon-ebs: Unpacking libpng12-0:amd64 (1.2.50-1ubuntu2.14.04.2) over (1.2.50-1ubuntu2) ...
amazon-ebs: Preparing to unpack .../libk5crypto3_1.12+dfsg-2ubuntu5.2_amd64.deb ...
amazon-ebs: Unpacking libk5crypto3:amd64 (1.12+dfsg-2ubuntu5.2) over (1.12+dfsg-2ubuntu5.1) ...
amazon-ebs: Preparing to unpack .../libgssapi-krb5-2_1.12+dfsg-2ubuntu5.2_amd64.deb ...
amazon-ebs: Unpacking libgssapi-krb5-2:amd64 (1.12+dfsg-2ubuntu5.2) over (1.12+dfsg-2ubuntu5.1) ...
amazon-ebs: Preparing to unpack .../libkrb5-3_1.12+dfsg-2ubuntu5.2_amd64.deb ...
amazon-ebs: Unpacking libkrb5-3:amd64 (1.12+dfsg-2ubuntu5.2) over (1.12+dfsg-2ubuntu5.1) ...
amazon-ebs: Preparing to unpack .../libkrb5support0_1.12+dfsg-2ubuntu5.2_amd64.deb ...
amazon-ebs: Unpacking libkrb5support0:amd64 (1.12+dfsg-2ubuntu5.2) over (1.12+dfsg-2ubuntu5.1) ...
amazon-ebs: Preparing to unpack .../libldap-2.4-2_2.4.31-1+nmu2ubuntu8.2_amd64.deb ...
amazon-ebs: Unpacking libldap-2.4-2:amd64 (2.4.31-1+nmu2ubuntu8.2) over (2.4.31-1+nmu2ubuntu8) ...
amazon-ebs: Preparing to unpack .../libcurl3-gnutls_7.35.0-1ubuntu2.6_amd64.deb ...
amazon-ebs: Unpacking libcurl3-gnutls:amd64 (7.35.0-1ubuntu2.6) over (7.35.0-1ubuntu2.3) ...
amazon-ebs: Preparing to unpack .../fuse_2.9.2-4ubuntu4.14.04.1_amd64.deb ...
amazon-ebs: Unpacking fuse (2.9.2-4ubuntu4.14.04.1) over (2.9.2-4ubuntu4) ...
amazon-ebs: Preparing to unpack .../libfuse2_2.9.2-4ubuntu4.14.04.1_amd64.deb ...
amazon-ebs: Unpacking libfuse2:amd64 (2.9.2-4ubuntu4.14.04.1) over (2.9.2-4ubuntu4) ...
amazon-ebs: Preparing to unpack .../libxext6_2%3a1.3.2-1ubuntu0.0.14.04.1_amd64.deb ...
amazon-ebs: Unpacking libxext6:amd64 (2:1.3.2-1ubuntu0.0.14.04.1) over (2:1.3.2-1) ...
amazon-ebs: Preparing to unpack .../libxml2_2.9.1+dfsg1-3ubuntu4.7_amd64.deb ...
amazon-ebs: Unpacking libxml2:amd64 (2.9.1+dfsg1-3ubuntu4.7) over (2.9.1+dfsg1-3ubuntu4.4) ...
amazon-ebs: Preparing to unpack .../curl_7.35.0-1ubuntu2.6_amd64.deb ...
amazon-ebs: Unpacking curl (7.35.0-1ubuntu2.6) over (7.35.0-1ubuntu2.3) ...
amazon-ebs: Preparing to unpack .../libcurl3_7.35.0-1ubuntu2.6_amd64.deb ...
amazon-ebs: Unpacking libcurl3:amd64 (7.35.0-1ubuntu2.6) over (7.35.0-1ubuntu2.3) ...
amazon-ebs: Preparing to unpack .../libfreetype6_2.5.2-1ubuntu2.5_amd64.deb ...
amazon-ebs: Unpacking libfreetype6:amd64 (2.5.2-1ubuntu2.5) over (2.5.2-1ubuntu2.4) ...
amazon-ebs: Preparing to unpack .../libicu52_52.1-3ubuntu0.4_amd64.deb ...
amazon-ebs: Unpacking libicu52:amd64 (52.1-3ubuntu0.4) over (52.1-3ubuntu0.2) ...
amazon-ebs: Preparing to unpack .../python2.7_2.7.6-8ubuntu0.2_amd64.deb ...
amazon-ebs: Unpacking python2.7 (2.7.6-8ubuntu0.2) over (2.7.6-8) ...
amazon-ebs: Preparing to unpack .../libpython2.7_2.7.6-8ubuntu0.2_amd64.deb ...
amazon-ebs: Unpacking libpython2.7:amd64 (2.7.6-8ubuntu0.2) over (2.7.6-8) ...
amazon-ebs: Preparing to unpack .../libpython2.7-stdlib_2.7.6-8ubuntu0.2_amd64.deb ...
amazon-ebs: Unpacking libpython2.7-stdlib:amd64 (2.7.6-8ubuntu0.2) over (2.7.6-8) ...
amazon-ebs: Preparing to unpack .../python2.7-minimal_2.7.6-8ubuntu0.2_amd64.deb ...
amazon-ebs: Unpacking python2.7-minimal (2.7.6-8ubuntu0.2) over (2.7.6-8) ...
amazon-ebs: Preparing to unpack .../libpython2.7-minimal_2.7.6-8ubuntu0.2_amd64.deb ...
amazon-ebs: Unpacking libpython2.7-minimal:amd64 (2.7.6-8ubuntu0.2) over (2.7.6-8) ...
amazon-ebs: Preparing to unpack .../linux-image-3.13.0-49-generic_3.13.0-49.83_amd64.deb ...
amazon-ebs: debconf: unable to initialize frontend: Dialog
amazon-ebs: debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
amazon-ebs: debconf: falling back to frontend: Readline
amazon-ebs: debconf: unable to initialize frontend: Readline
amazon-ebs: debconf: (This frontend requires a controlling tty.)
amazon-ebs: debconf: falling back to frontend: Teletype
amazon-ebs: Done.
amazon-ebs: Unpacking linux-image-3.13.0-49-generic (3.13.0-49.83) over (3.13.0-49.81) ...
amazon-ebs: Examining /etc/kernel/postrm.d .
amazon-ebs: run-parts: executing /etc/kernel/postrm.d/initramfs-tools 3.13.0-49-generic /boot/vmlinuz-3.13.0-49-generic
amazon-ebs: run-parts: executing /etc/kernel/postrm.d/x-grub-legacy-ec2 3.13.0-49-generic /boot/vmlinuz-3.13.0-49-generic
amazon-ebs: run-parts: executing /etc/kernel/postrm.d/zz-update-grub 3.13.0-49-generic /boot/vmlinuz-3.13.0-49-generic
amazon-ebs: Preparing to unpack .../tzdata_2015g-0ubuntu0.14.04_all.deb ...
amazon-ebs: Unpacking tzdata (2015g-0ubuntu0.14.04) over (2015b-0ubuntu0.14.04) ...
amazon-ebs: Processing triggers for mime-support (3.54ubuntu1.1) ...
amazon-ebs: Processing triggers for man-db (2.6.7.1-1ubuntu1) ...
amazon-ebs: Setting up tzdata (2015g-0ubuntu0.14.04) ...
amazon-ebs: debconf: unable to initialize frontend: Dialog
amazon-ebs: debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
amazon-ebs: debconf: falling back to frontend: Readline
amazon-ebs: debconf: unable to initialize frontend: Readline
amazon-ebs: debconf: (This frontend requires a controlling tty.)
amazon-ebs: debconf: falling back to frontend: Teletype
amazon-ebs:
amazon-ebs: Current default time zone: 'Etc/UTC'
amazon-ebs: Local time is now: Thu Jan 28 06:45:59 UTC 2016.
amazon-ebs: Universal Time is now: Thu Jan 28 06:45:59 UTC 2016.
amazon-ebs: Run 'dpkg-reconfigure tzdata' if you wish to change it.
amazon-ebs:
amazon-ebs: (Reading database ... 51125 files and directories currently installed.)
amazon-ebs: Preparing to unpack .../isc-dhcp-client_4.2.4-7ubuntu12.4_amd64.deb ...
amazon-ebs: Unpacking isc-dhcp-client (4.2.4-7ubuntu12.4) over (4.2.4-7ubuntu12) ...
amazon-ebs: Preparing to unpack .../isc-dhcp-common_4.2.4-7ubuntu12.4_amd64.deb ...
amazon-ebs: Unpacking isc-dhcp-common (4.2.4-7ubuntu12.4) over (4.2.4-7ubuntu12) ...
amazon-ebs: Preparing to unpack .../bind9-host_1%3a9.9.5.dfsg-3ubuntu0.7_amd64.deb ...
amazon-ebs: Unpacking bind9-host (1:9.9.5.dfsg-3ubuntu0.7) over (1:9.9.5.dfsg-3ubuntu0.2) ...
amazon-ebs: Preparing to unpack .../dnsutils_1%3a9.9.5.dfsg-3ubuntu0.7_amd64.deb ...
amazon-ebs: Unpacking dnsutils (1:9.9.5.dfsg-3ubuntu0.7) over (1:9.9.5.dfsg-3ubuntu0.2) ...
amazon-ebs: Preparing to unpack .../libisc95_1%3a9.9.5.dfsg-3ubuntu0.7_amd64.deb ...
amazon-ebs: Unpacking libisc95 (1:9.9.5.dfsg-3ubuntu0.7) over (1:9.9.5.dfsg-3ubuntu0.2) ...
amazon-ebs: Preparing to unpack .../libdns100_1%3a9.9.5.dfsg-3ubuntu0.7_amd64.deb ...
amazon-ebs: Unpacking libdns100 (1:9.9.5.dfsg-3ubuntu0.7) over (1:9.9.5.dfsg-3ubuntu0.2) ...
amazon-ebs: Preparing to unpack .../libisccc90_1%3a9.9.5.dfsg-3ubuntu0.7_amd64.deb ...
amazon-ebs: Unpacking libisccc90 (1:9.9.5.dfsg-3ubuntu0.7) over (1:9.9.5.dfsg-3ubuntu0.2) ...
amazon-ebs: Preparing to unpack .../libisccfg90_1%3a9.9.5.dfsg-3ubuntu0.7_amd64.deb ...
amazon-ebs: Unpacking libisccfg90 (1:9.9.5.dfsg-3ubuntu0.7) over (1:9.9.5.dfsg-3ubuntu0.2) ...
amazon-ebs: Preparing to unpack .../liblwres90_1%3a9.9.5.dfsg-3ubuntu0.7_amd64.deb ...
amazon-ebs: Unpacking liblwres90 (1:9.9.5.dfsg-3ubuntu0.7) over (1:9.9.5.dfsg-3ubuntu0.2) ...
amazon-ebs: Preparing to unpack .../libbind9-90_1%3a9.9.5.dfsg-3ubuntu0.7_amd64.deb ...
amazon-ebs: Unpacking libbind9-90 (1:9.9.5.dfsg-3ubuntu0.7) over (1:9.9.5.dfsg-3ubuntu0.2) ...
amazon-ebs: Preparing to unpack .../krb5-locales_1.12+dfsg-2ubuntu5.2_all.deb ...
amazon-ebs: Unpacking krb5-locales (1.12+dfsg-2ubuntu5.2) over (1.12+dfsg-2ubuntu5.1) ...
amazon-ebs: Preparing to unpack .../openssh-sftp-server_1%3a6.6p1-2ubuntu2.4_amd64.deb ...
amazon-ebs: Unpacking openssh-sftp-server (1:6.6p1-2ubuntu2.4) over (1:6.6p1-2ubuntu2) ...
amazon-ebs: Preparing to unpack .../openssh-server_1%3a6.6p1-2ubuntu2.4_amd64.deb ...
amazon-ebs: Unpacking openssh-server (1:6.6p1-2ubuntu2.4) over (1:6.6p1-2ubuntu2) ...
amazon-ebs: Preparing to unpack .../openssh-client_1%3a6.6p1-2ubuntu2.4_amd64.deb ...
amazon-ebs: Unpacking openssh-client (1:6.6p1-2ubuntu2.4) over (1:6.6p1-2ubuntu2) ...
amazon-ebs: Preparing to unpack .../openssl_1.0.1f-1ubuntu2.16_amd64.deb ...
amazon-ebs: Unpacking openssl (1.0.1f-1ubuntu2.16) over (1.0.1f-1ubuntu2.11) ...
amazon-ebs: Preparing to unpack .../ppp_2.4.5-5.1ubuntu2.2_amd64.deb ...
amazon-ebs: Unpacking ppp (2.4.5-5.1ubuntu2.2) over (2.4.5-5.1ubuntu2.1) ...
amazon-ebs: Preparing to unpack .../rsync_3.1.0-2ubuntu0.2_amd64.deb ...
amazon-ebs: Unpacking rsync (3.1.0-2ubuntu0.2) over (3.1.0-2ubuntu0.1) ...
amazon-ebs: Preparing to unpack .../tcpdump_4.5.1-2ubuntu1.2_amd64.deb ...
amazon-ebs: Unpacking tcpdump (4.5.1-2ubuntu1.2) over (4.5.1-2ubuntu1.1) ...
amazon-ebs: Preparing to unpack .../grub-pc_2.02beta2-9ubuntu1.6_amd64.deb ...
amazon-ebs: Unpacking grub-pc (2.02
beta2-9ubuntu1.6) over (2.02beta2-9ubuntu1) ...
amazon-ebs: Preparing to unpack .../grub-pc-bin_2.02
beta2-9ubuntu1.6_amd64.deb ...
amazon-ebs: Unpacking grub-pc-bin (2.02beta2-9ubuntu1.6) over (2.02beta2-9ubuntu1) ...
amazon-ebs: Preparing to unpack .../grub2-common_2.02beta2-9ubuntu1.6_amd64.deb ...
amazon-ebs: Unpacking grub2-common (2.02
beta2-9ubuntu1.6) over (2.02beta2-9ubuntu1) ...
amazon-ebs: Preparing to unpack .../grub-common_2.02
beta2-9ubuntu1.6_amd64.deb ...
amazon-ebs: Unpacking grub-common (2.02beta2-9ubuntu1.6) over (2.02beta2-9ubuntu1) ...
amazon-ebs: Preparing to unpack .../python3-problem-report_2.14.1-0ubuntu3.18_all.deb ...
amazon-ebs: Unpacking python3-problem-report (2.14.1-0ubuntu3.18) over (2.14.1-0ubuntu3.8) ...
amazon-ebs: Preparing to unpack .../python3-apport_2.14.1-0ubuntu3.18_all.deb ...
amazon-ebs: Unpacking python3-apport (2.14.1-0ubuntu3.18) over (2.14.1-0ubuntu3.8) ...
amazon-ebs: Preparing to unpack .../apport_2.14.1-0ubuntu3.18_all.deb ...
amazon-ebs: apport stop/waiting
amazon-ebs: Unpacking apport (2.14.1-0ubuntu3.18) over (2.14.1-0ubuntu3.8) ...
amazon-ebs: Preparing to unpack .../linux-headers-3.13.0-49_3.13.0-49.83_all.deb ...
amazon-ebs: Unpacking linux-headers-3.13.0-49 (3.13.0-49.83) over (3.13.0-49.81) ...
amazon-ebs: Preparing to unpack .../linux-headers-3.13.0-49-generic_3.13.0-49.83_amd64.deb ...
amazon-ebs: Unpacking linux-headers-3.13.0-49-generic (3.13.0-49.83) over (3.13.0-49.81) ...
amazon-ebs: Preparing to unpack .../patch_2.7.1-4ubuntu2.3_amd64.deb ...
amazon-ebs: Unpacking patch (2.7.1-4ubuntu2.3) over (2.7.1-4ubuntu1) ...
amazon-ebs: Preparing to unpack .../pollinate_4.7-0ubuntu1.4_all.deb ...
amazon-ebs: Unpacking pollinate (4.7-0ubuntu1.4) over (4.7-0ubuntu1.2) ...
amazon-ebs: Preparing to unpack .../unattended-upgrades_0.82.1ubuntu2.3_all.deb ...
amazon-ebs: Unpacking unattended-upgrades (0.82.1ubuntu2.3) over (0.82.1ubuntu2.2) ...
amazon-ebs: Processing triggers for man-db (2.6.7.1-1ubuntu1) ...
amazon-ebs: Processing triggers for ureadahead (0.100.0-16) ...
amazon-ebs: Processing triggers for ufw (0.34rc-0ubuntu2) ...
amazon-ebs: Processing triggers for install-info (5.2.0.dfsg.1-2) ...
amazon-ebs: Processing triggers for shared-mime-info (1.2-0ubuntu3) ...
amazon-ebs: Setting up libexpat1:amd64 (2.1.0-4ubuntu1.1) ...
amazon-ebs: Setting up libtasn1-6:amd64 (3.4-3ubuntu0.3) ...
amazon-ebs: Setting up libgnutls26:amd64 (2.12.23-12ubuntu2.4) ...
amazon-ebs: Setting up libgnutls-openssl27:amd64 (2.12.23-12ubuntu2.4) ...
amazon-ebs: Setting up libssl1.0.0:amd64 (1.0.1f-1ubuntu2.16) ...
amazon-ebs: debconf: unable to initialize frontend: Dialog
amazon-ebs: debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
amazon-ebs: debconf: falling back to frontend: Readline
amazon-ebs: debconf: unable to initialize frontend: Readline
amazon-ebs: debconf: (This frontend requires a controlling tty.)
amazon-ebs: debconf: falling back to frontend: Teletype
amazon-ebs: Setting up libpython3.4-minimal:amd64 (3.4.0-2ubuntu1.1) ...
amazon-ebs: Setting up python3.4-minimal (3.4.0-2ubuntu1.1) ...
amazon-ebs: Setting up libsqlite3-0:amd64 (3.8.2-1ubuntu2.1) ...
amazon-ebs: Setting up libpython3.4-stdlib:amd64 (3.4.0-2ubuntu1.1) ...
amazon-ebs: Setting up python3.4 (3.4.0-2ubuntu1.1) ...
amazon-ebs: Setting up ntpdate (1:4.2.6.p5+dfsg-3ubuntu2.14.04.5) ...
amazon-ebs: Setting up libpng12-0:amd64 (1.2.50-1ubuntu2.14.04.2) ...
amazon-ebs: Setting up libkrb5support0:amd64 (1.12+dfsg-2ubuntu5.2) ...
amazon-ebs: Setting up libk5crypto3:amd64 (1.12+dfsg-2ubuntu5.2) ...
amazon-ebs: Setting up libkrb5-3:amd64 (1.12+dfsg-2ubuntu5.2) ...
amazon-ebs: Setting up libgssapi-krb5-2:amd64 (1.12+dfsg-2ubuntu5.2) ...
amazon-ebs: Setting up libldap-2.4-2:amd64 (2.4.31-1+nmu2ubuntu8.2) ...
amazon-ebs: Setting up libcurl3-gnutls:amd64 (7.35.0-1ubuntu2.6) ...
amazon-ebs: Setting up libfuse2:amd64 (2.9.2-4ubuntu4.14.04.1) ...
amazon-ebs: Setting up fuse (2.9.2-4ubuntu4.14.04.1) ...
amazon-ebs: update-initramfs: deferring update (trigger activated)
amazon-ebs: Setting up libxext6:amd64 (2:1.3.2-1ubuntu0.0.14.04.1) ...
amazon-ebs: Setting up libxml2:amd64 (2.9.1+dfsg1-3ubuntu4.7) ...
amazon-ebs: Setting up libcurl3:amd64 (7.35.0-1ubuntu2.6) ...
amazon-ebs: Setting up curl (7.35.0-1ubuntu2.6) ...
amazon-ebs: Setting up libfreetype6:amd64 (2.5.2-1ubuntu2.5) ...
amazon-ebs: Setting up libicu52:amd64 (52.1-3ubuntu0.4) ...
amazon-ebs: Setting up libpython2.7-minimal:amd64 (2.7.6-8ubuntu0.2) ...
amazon-ebs: Setting up python2.7-minimal (2.7.6-8ubuntu0.2) ...
amazon-ebs: Setting up libpython2.7-stdlib:amd64 (2.7.6-8ubuntu0.2) ...
amazon-ebs: Setting up python2.7 (2.7.6-8ubuntu0.2) ...
amazon-ebs: Setting up libpython2.7:amd64 (2.7.6-8ubuntu0.2) ...
amazon-ebs: Setting up linux-image-3.13.0-49-generic (3.13.0-49.83) ...
amazon-ebs: Running depmod.
amazon-ebs: update-initramfs: deferring update (hook will be called later)
amazon-ebs: Not updating initrd symbolic links since we are being updated/reinstalled
amazon-ebs: (3.13.0-49.81 was configured last, according to dpkg)
amazon-ebs: Not updating image symbolic links since we are being updated/reinstalled
amazon-ebs: (3.13.0-49.81 was configured last, according to dpkg)
amazon-ebs: Examining /etc/kernel/postinst.d.
amazon-ebs: run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 3.13.0-49-generic /boot/vmlinuz-3.13.0-49-generic
amazon-ebs: run-parts: executing /etc/kernel/postinst.d/initramfs-tools 3.13.0-49-generic /boot/vmlinuz-3.13.0-49-generic
amazon-ebs: update-initramfs: Generating /boot/initrd.img-3.13.0-49-generic
amazon-ebs: run-parts: executing /etc/kernel/postinst.d/update-notifier 3.13.0-49-generic /boot/vmlinuz-3.13.0-49-generic
amazon-ebs: run-parts: executing /etc/kernel/postinst.d/x-grub-legacy-ec2 3.13.0-49-generic /boot/vmlinuz-3.13.0-49-generic
amazon-ebs: debconf: unable to initialize frontend: Dialog
amazon-ebs: debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
amazon-ebs: debconf: falling back to frontend: Readline
amazon-ebs: debconf: unable to initialize frontend: Readline
amazon-ebs: debconf: (This frontend requires a controlling tty.)
amazon-ebs: debconf: falling back to frontend: Teletype
amazon-ebs: Searching for GRUB installation directory ... found: /boot/grub
amazon-ebs: Searching for default file ... found: /boot/grub/default
amazon-ebs: Testing for an existing GRUB menu.lst file ... found: /boot/grub/menu.lst
amazon-ebs: Searching for splash image ... none found, skipping ...
amazon-ebs: Found kernel: /boot/vmlinuz-3.13.0-49-generic
amazon-ebs: Updating /boot/grub/menu.lst ... done
amazon-ebs:
amazon-ebs: run-parts: executing /etc/kernel/postinst.d/zz-update-grub 3.13.0-49-generic /boot/vmlinuz-3.13.0-49-generic
amazon-ebs: Generating grub configuration file ...
amazon-ebs: grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: Found linux image: /boot/vmlinuz-3.13.0-49-generic
amazon-ebs: Found initrd image: /boot/initrd.img-3.13.0-49-generic
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: done
amazon-ebs: Setting up isc-dhcp-common (4.2.4-7ubuntu12.4) ...
amazon-ebs: Setting up isc-dhcp-client (4.2.4-7ubuntu12.4) ...
amazon-ebs: Installing new version of config file /etc/apparmor.d/sbin.dhclient ...
amazon-ebs: debconf: unable to initialize frontend: Dialog
amazon-ebs: debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
amazon-ebs: debconf: falling back to frontend: Readline
amazon-ebs: debconf: unable to initialize frontend: Readline
amazon-ebs: debconf: (This frontend requires a controlling tty.)
amazon-ebs: debconf: falling back to frontend: Teletype
amazon-ebs: Setting up libisc95 (1:9.9.5.dfsg-3ubuntu0.7) ...
amazon-ebs: Setting up libdns100 (1:9.9.5.dfsg-3ubuntu0.7) ...
amazon-ebs: Setting up libisccc90 (1:9.9.5.dfsg-3ubuntu0.7) ...
amazon-ebs: Setting up libisccfg90 (1:9.9.5.dfsg-3ubuntu0.7) ...
amazon-ebs: Setting up libbind9-90 (1:9.9.5.dfsg-3ubuntu0.7) ...
amazon-ebs: Setting up liblwres90 (1:9.9.5.dfsg-3ubuntu0.7) ...
amazon-ebs: Setting up bind9-host (1:9.9.5.dfsg-3ubuntu0.7) ...
amazon-ebs: Setting up dnsutils (1:9.9.5.dfsg-3ubuntu0.7) ...
amazon-ebs: Setting up krb5-locales (1.12+dfsg-2ubuntu5.2) ...
amazon-ebs: Setting up openssh-client (1:6.6p1-2ubuntu2.4) ...
amazon-ebs: Setting up openssh-sftp-server (1:6.6p1-2ubuntu2.4) ...
amazon-ebs: Setting up openssh-server (1:6.6p1-2ubuntu2.4) ...
amazon-ebs: debconf: unable to initialize frontend: Dialog
amazon-ebs: debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
amazon-ebs: debconf: falling back to frontend: Readline
amazon-ebs: debconf: unable to initialize frontend: Readline
amazon-ebs: debconf: (This frontend requires a controlling tty.)
amazon-ebs: debconf: falling back to frontend: Teletype
amazon-ebs: Creating SSH2 ED25519 key; this may take some time ...
amazon-ebs: ssh stop/waiting
amazon-ebs: ssh start/running, process 8946
amazon-ebs: Setting up openssl (1.0.1f-1ubuntu2.16) ...
amazon-ebs: Setting up ppp (2.4.5-5.1ubuntu2.2) ...
amazon-ebs: Setting up rsync (3.1.0-2ubuntu0.2) ...
amazon-ebs: update-rc.d: warning: default stop runlevel arguments (0 1 6) do not match rsync Default-Stop values (none)
amazon-ebs: System start/stop links for /etc/init.d/rsync already exist.
amazon-ebs: Setting up tcpdump (4.5.1-2ubuntu1.2) ...
amazon-ebs: Setting up grub-common (2.02
beta2-9ubuntu1.6) ...
amazon-ebs: Installing new version of config file /etc/grub.d/00_header ...
amazon-ebs: Setting up grub2-common (2.02beta2-9ubuntu1.6) ...
amazon-ebs: Setting up grub-pc-bin (2.02
beta2-9ubuntu1.6) ...
amazon-ebs: Setting up grub-pc (2.02~beta2-9ubuntu1.6) ...
amazon-ebs: debconf: unable to initialize frontend: Dialog
amazon-ebs: debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
amazon-ebs: debconf: falling back to frontend: Readline
amazon-ebs: debconf: unable to initialize frontend: Readline
amazon-ebs: debconf: (This frontend requires a controlling tty.)
amazon-ebs: debconf: falling back to frontend: Teletype
amazon-ebs: Generating grub configuration file ...
amazon-ebs: grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: Found linux image: /boot/vmlinuz-3.13.0-49-generic
amazon-ebs: Found initrd image: /boot/initrd.img-3.13.0-49-generic
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: /usr/sbin/grub-probe: warning: disk does not exist, so falling back to partition device /dev/xvda1.
amazon-ebs: done
amazon-ebs: Setting up python3-problem-report (2.14.1-0ubuntu3.18) ...
amazon-ebs: Setting up python3-apport (2.14.1-0ubuntu3.18) ...
amazon-ebs: Setting up apport (2.14.1-0ubuntu3.18) ...
amazon-ebs: apport start/running
amazon-ebs: Setting up linux-headers-3.13.0-49 (3.13.0-49.83) ...
amazon-ebs: Setting up linux-headers-3.13.0-49-generic (3.13.0-49.83) ...
amazon-ebs: Setting up patch (2.7.1-4ubuntu2.3) ...
amazon-ebs: Setting up pollinate (4.7-0ubuntu1.4) ...
amazon-ebs: Installing new version of config file /etc/pollinate/entropy.ubuntu.com.pem ...
amazon-ebs: pollinate start/running, process 9609
amazon-ebs: Setting up unattended-upgrades (0.82.1ubuntu2.3) ...
amazon-ebs: debconf: unable to initialize frontend: Dialog
amazon-ebs: debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)
amazon-ebs: debconf: falling back to frontend: Readline
amazon-ebs: debconf: unable to initialize frontend: Readline
amazon-ebs: debconf: (This frontend requires a controlling tty.)
amazon-ebs: debconf: falling back to frontend: Teletype
amazon-ebs: Processing triggers for libc-bin (2.19-0ubuntu6.6) ...
amazon-ebs: Processing triggers for initramfs-tools (0.103ubuntu4.2) ...
amazon-ebs: update-initramfs: Generating /boot/initrd.img-3.13.0-49-generic
amazon-ebs: Reading package lists...
amazon-ebs: Building dependency tree...
amazon-ebs: Reading state information...
amazon-ebs: linux-headers-3.13.0-49-generic is already the newest version.
amazon-ebs: linux-headers-3.13.0-49-generic set to manually installed.
amazon-ebs: 0 upgraded, 0 newly installed, 0 to remove and 4 not upgraded.
amazon-ebs: Reading package lists...
amazon-ebs: Building dependency tree...
amazon-ebs: Reading state information...
amazon-ebs: 0 upgraded, 0 newly installed, 0 to remove and 4 not upgraded.
amazon-ebs: Reading package lists...
amazon-ebs: Building dependency tree...
amazon-ebs: Reading state information...
amazon-ebs: curl is already the newest version.
amazon-ebs: 0 upgraded, 0 newly installed, 0 to remove and 4 not upgraded.
amazon-ebs: Reading package lists...
amazon-ebs: Building dependency tree...
amazon-ebs: Reading state information...
amazon-ebs: rsync is already the newest version.
amazon-ebs: 0 upgraded, 0 newly installed, 0 to remove and 4 not upgraded.
amazon-ebs: Reading package lists...
amazon-ebs: Building dependency tree...
amazon-ebs: Reading state information...
amazon-ebs: screen is already the newest version.
amazon-ebs: 0 upgraded, 0 newly installed, 0 to remove and 4 not upgraded.
amazon-ebs: Installing git
amazon-ebs: Reading package lists...
amazon-ebs: Building dependency tree...
amazon-ebs: Reading state information...
amazon-ebs: Some packages could not be installed. This may mean that you have
amazon-ebs: requested an impossible situation or if you are using the unstable
amazon-ebs: distribution that some required packages have not yet been created
amazon-ebs: or been moved out of Incoming.
amazon-ebs: The following information may help to resolve the situation:
amazon-ebs:
amazon-ebs: The following packages have unmet dependencies:
amazon-ebs: git : Depends: liberror-perl but it is not installable
amazon-ebs: E: Unable to correct problems, you have held broken packages.
==> amazon-ebs: Uploading ../jenkins-config => /tmp
==> amazon-ebs: Provisioning with shell script: scripts/jenkins.sh
amazon-ebs: Reading package lists...
amazon-ebs: Building dependency tree...
amazon-ebs: Reading state information...
amazon-ebs: E: Unable to locate package dos2unix
amazon-ebs: OK
amazon-ebs: Ign http://pkg.jenkins-ci.org binary/ InRelease
amazon-ebs: Get:1 http://pkg.jenkins-ci.org binary/ Release.gpg [181 B]
amazon-ebs: Get:2 http://pkg.jenkins-ci.org binary/ Release [2046 B]
amazon-ebs: Get:3 http://pkg.jenkins-ci.org binary/ Packages [653 B]
amazon-ebs: Hit http://security.ubuntu.com trusty-security InRelease
amazon-ebs: Ign http://pkg.jenkins-ci.org binary/ Translation-en
amazon-ebs: Get:4 http://security.ubuntu.com trusty-security/main Sources [103 kB]
amazon-ebs: Ign http://us-east-1.ec2.archive.ubuntu.com trusty InRelease
amazon-ebs: Get:5 http://us-east-1.ec2.archive.ubuntu.com trusty-updates InRelease [64.4 kB]
amazon-ebs: Get:6 http://us-east-1.ec2.archive.ubuntu.com trusty Release.gpg [933 B]
amazon-ebs: Get:7 http://us-east-1.ec2.archive.ubuntu.com trusty-updates/main Sources [248 kB]
amazon-ebs: Get:8 http://security.ubuntu.com trusty-security/universe Sources [33.1 kB]
amazon-ebs: Hit http://security.ubuntu.com trusty-security/main amd64 Packages
amazon-ebs: Hit http://security.ubuntu.com trusty-security/universe amd64 Packages
amazon-ebs: Hit http://security.ubuntu.com trusty-security/main Translation-en
amazon-ebs: Hit http://security.ubuntu.com trusty-security/universe Translation-en
amazon-ebs: Get:9 http://us-east-1.ec2.archive.ubuntu.com trusty-updates/main Sources [248 kB]
amazon-ebs: Get:10 http://us-east-1.ec2.archive.ubuntu.com trusty-updates/universe Sources [147 kB]
amazon-ebs: Get:11 http://us-east-1.ec2.archive.ubuntu.com trusty-updates/main amd64 Packages [689 kB]
amazon-ebs: Get:12 http://us-east-1.ec2.archive.ubuntu.com trusty-updates/universe amd64 Packages [334 kB]
amazon-ebs: Get:13 http://us-east-1.ec2.archive.ubuntu.com trusty-updates/main Translation-en [348 kB]
amazon-ebs: Get:14 http://us-east-1.ec2.archive.ubuntu.com trusty-updates/universe Translation-en [176 kB]
amazon-ebs: Get:15 http://us-east-1.ec2.archive.ubuntu.com trusty Release [58.5 kB]
amazon-ebs: Get:16 http://us-east-1.ec2.archive.ubuntu.com trusty/main Sources [1064 kB]
amazon-ebs: Get:17 http://us-east-1.ec2.archive.ubuntu.com trusty/universe Sources [6399 kB]
amazon-ebs: Get:18 http://us-east-1.ec2.archive.ubuntu.com trusty/universe Sources [6399 kB]
amazon-ebs: Get:19 http://us-east-1.ec2.archive.ubuntu.com trusty/main amd64 Packages [1350 kB]
amazon-ebs: Get:20 http://us-east-1.ec2.archive.ubuntu.com trusty/universe amd64 Packages [5859 kB]
amazon-ebs: Get:21 http://us-east-1.ec2.archive.ubuntu.com trusty/main Translation-en [762 kB]
amazon-ebs: Get:22 http://us-east-1.ec2.archive.ubuntu.com trusty/universe Translation-en [4089 kB]
amazon-ebs: Get:23 http://us-east-1.ec2.archive.ubuntu.com trusty/main amd64 Packages [1350 kB]
amazon-ebs: Err http://us-east-1.ec2.archive.ubuntu.com trusty/main amd64 Packages
amazon-ebs:
amazon-ebs: Err http://us-east-1.ec2.archive.ubuntu.com trusty/main amd64 Packages
amazon-ebs: 404 Not Found [IP: 54.198.110.211 80]
amazon-ebs: Fetched 17.9 MB in 10min 35s (28.2 kB/s)
amazon-ebs: W: Failed to fetch http://us-east-1.ec2.archive.ubuntu.com/ubuntu/dists/trusty/main/binary-amd64/Packages 404 Not Found [IP: 54.198.110.211 80]
amazon-ebs:
amazon-ebs: E: Some index files failed to download. They have been ignored, or old ones used instead.
amazon-ebs: Reading package lists...
amazon-ebs: Building dependency tree...
amazon-ebs: Reading state information...
amazon-ebs: Some packages could not be installed. This may mean that you have
amazon-ebs: requested an impossible situation or if you are using the unstable
amazon-ebs: distribution that some required packages have not yet been created
amazon-ebs: or been moved out of Incoming.
amazon-ebs: The following information may help to resolve the situation:
amazon-ebs:
amazon-ebs: The following packages have unmet dependencies:
amazon-ebs: jenkins : Depends: default-jre-headless (>= 2:1.7) but it is not installable or
amazon-ebs: java7-runtime-headless
amazon-ebs: E: Unable to correct problems, you have held broken packages.
amazon-ebs: Reading package lists...
amazon-ebs: Building dependency tree...
amazon-ebs: Reading state information...
amazon-ebs: The following packages have been kept back:
amazon-ebs: linux-headers-generic linux-headers-virtual linux-image-virtual
amazon-ebs: linux-virtual
amazon-ebs: The following packages will be upgraded:
amazon-ebs: accountsservice apparmor apport apt apt-transport-https apt-utils base-files
amazon-ebs: bash-completion bsdutils cloud-init coreutils dh-python e2fslibs e2fsprogs
amazon-ebs: gcc-4.8-base gcc-4.9-base gdisk grub-common grub-legacy-ec2 grub-pc
amazon-ebs: grub-pc-bin grub2-common initscripts iproute2 irqbalance libaccountsservice0
amazon-ebs: libapparmor-perl libapparmor1 libapt-inst1.5 libapt-pkg4.12 libblkid1
amazon-ebs: libcgmanager0 libcomerr2 libdrm2 libffi6 libgcc1 libmount1 libnuma1
amazon-ebs: libpam-systemd libparted0debian1 libpolkit-agent-1-0 libpolkit-backend-1-0
amazon-ebs: libpolkit-gobject-1-0 libpython3.4-minimal libpython3.4-stdlib libss2
amazon-ebs: libstdc++6 libsystemd-daemon0 libsystemd-login0 libudev1 libuuid1 login lshw
amazon-ebs: mount ntpdate os-prober overlayroot parted passwd policykit-1 python-apt
amazon-ebs: python-apt-common python-pkg-resources python-requests python-six
amazon-ebs: python-urllib3 python3-apport python3-apt python3-distupgrade python3-gdbm
amazon-ebs: python3-problem-report python3-software-properties python3-update-manager
amazon-ebs: python3.4 python3.4-minimal rsyslog software-properties-common sudo
amazon-ebs: systemd-services sysv-rc sysvinit-utils ubuntu-release-upgrader-core udev
amazon-ebs: unattended-upgrades update-manager-core util-linux uuid-runtime
amazon-ebs: /tmp/script_7943.sh: line 17: dos2unix: command not found
amazon-ebs: 87 upgraded, 0 newly installed, 0 to remove and 4 not upgraded.
amazon-ebs: Need to get 18.3 MB of archives.
amazon-ebs: After this operation, 239 kB disk space will be freed.
amazon-ebs: Do you want to continue? [Y/n] Abort.
amazon-ebs: Installing: build-pipeline-plugin
amazon-ebs: Installing: git
amazon-ebs: Installing: github
amazon-ebs: Installing: ghprb
amazon-ebs: Check for missing dependecies ...
amazon-ebs: /tmp/jenkins-config/install_jenkins_plugins.sh: line 52: unzip: command not found
amazon-ebs: /tmp/jenkins-config/install_jenkins_plugins.sh: line 52: unzip: command not found
amazon-ebs: /tmp/jenkins-config/install_jenkins_plugins.sh: line 52: unzip: command not found
amazon-ebs: /tmp/jenkins-config/install_jenkins_plugins.sh: line 52: unzip: command not found
amazon-ebs: fixing permissions
amazon-ebs: chown: invalid user: 'jenkins.jenkins'
amazon-ebs: Compile/
amazon-ebs: Compile/builds/
amazon-ebs: Compile/config.xml
amazon-ebs: Compile/nextBuildNumber
amazon-ebs: Compile/builds/lastFailedBuild
amazon-ebs: Compile/builds/lastStableBuild
amazon-ebs: Compile/builds/lastSuccessfulBuild
amazon-ebs: Compile/builds/lastUnstableBuild
amazon-ebs: Compile/builds/lastUnsuccessfulBuild
amazon-ebs: Compile/builds/legacyIds
amazon-ebs: Release/
amazon-ebs: Release/builds/
amazon-ebs: Release/config.xml
amazon-ebs: Release/nextBuildNumber
amazon-ebs: Release/builds/lastFailedBuild
amazon-ebs: Release/builds/lastStableBuild
amazon-ebs: Release/builds/lastSuccessfulBuild
amazon-ebs: Release/builds/lastUnstableBuild
amazon-ebs: Release/builds/lastUnsuccessfulBuild
amazon-ebs: Release/builds/legacyIds
amazon-ebs: Test/
amazon-ebs: Test/builds/
amazon-ebs: Test/config.xml
amazon-ebs: Test/nextBuildNumber
amazon-ebs: Test/builds/lastFailedBuild
amazon-ebs: Test/builds/lastStableBuild
amazon-ebs: Test/builds/lastSuccessfulBuild
amazon-ebs: Test/builds/lastUnstableBuild
amazon-ebs: Test/builds/lastUnsuccessfulBuild
amazon-ebs: Test/builds/legacyIds
amazon-ebs: adventure/
amazon-ebs: adventure/builds/
amazon-ebs: adventure/config.xml
amazon-ebs: adventure/nextBuildNumber
amazon-ebs: adventure/builds/lastFailedBuild
amazon-ebs: adventure/builds/lastStableBuild
amazon-ebs: adventure/builds/lastSuccessfulBuild
amazon-ebs: adventure/builds/lastUnstableBuild
amazon-ebs: adventure/builds/lastUnsuccessfulBuild
amazon-ebs: chown: invalid user: 'jenkins:jenkins'
amazon-ebs: adventure/builds/legacyIds
amazon-ebs: uptime/
amazon-ebs: uptime/builds/
amazon-ebs: uptime/config.xml
amazon-ebs: uptime/nextBuildNumber
amazon-ebs: uptime/builds/lastFailedBuild
amazon-ebs: uptime/builds/lastStableBuild
amazon-ebs: uptime/builds/lastSuccessfulBuild
amazon-ebs: uptime/builds/lastUnstableBuild
amazon-ebs: uptime/builds/lastUnsuccessfulBuild
amazon-ebs: uptime/builds/legacyIds
amazon-ebs: jenkins: unrecognized service
==> amazon-ebs: Terminating the source AWS instance...
==> amazon-ebs: No AMIs to cleanup
==> amazon-ebs: Deleting temporary security group...
==> amazon-ebs: Deleting temporary keypair...
Build 'amazon-ebs' errored: Script exited with non-zero exit status: 1

google compute problem

hello friends... ı need a help.. ı cant use packer. ı got the fault below..

please help...

ALİ-OKUMUŞ@ALI-OKUMUS MINGW64 ~/devops/packer-templates (master)
$ ls
account.json application-server.json control-server.json http/ packer_cache/ scripts/ virtualbox/

ALİ-OKUMUŞ@ALI-OKUMUS MINGW64 ~/devops/packer-templates (master)
$ packer build -only=googlecompute application-server.json
googlecompute output will be in this color.

==> googlecompute: Checking image does not exist...
==> googlecompute: Creating temporary SSH key for instance...
==> googlecompute: Using image: ubuntu-1404-trusty-v20150316
==> googlecompute: Creating instance...
googlecompute: Loading zone: us-central1-a
==> googlecompute: Error creating instance: googleapi: Error 403: Required 'compute.zones.get' permission for 'projects/devops-228813/zones/us-central1-a', forbidden
Build 'googlecompute' errored: Error creating instance: googleapi: Error 403: Required 'compute.zones.get' permission for 'projects/devops-228813/zones/us-central1-a', forbidden

==> Some builds didn't complete successfully and had errors:
--> googlecompute: Error creating instance: googleapi: Error 403: Required 'compute.zones.get' permission for 'projects/devops-228813/zones/us-central1-a', forbidden

==> Builds finished but no artifacts were created.

Command 'vagrant up' throws error

I have installed the virtaulbox artifact and added it with the following command:

vagrant box add ubuntu-14.04.6-server-amd64-appserver_virtualbox.box --name devops-appserver

Here is the output to show that it was successful:

==> box: Box file was not detected as metadata. Adding it directly...
==> box: Adding box 'devops-appserver' (v0) for provider: 
    box: Unpacking necessary files from: file:///blah/blah/blah/udacity/devops-intro-project/packer-templates/virtualbox/ubuntu-14.04.6-server-amd64-appserver_virtualbox.box
==> box: Successfully added box 'devops-appserver' (v0) for 'virtualbox'!

The next command I run is vagrant up and here is the output plus error:

Bringing machine 'default' up with 'libvirt' provider...
==> default: Box 'devops-appserver' could not be found. Attempting to find and install...
    default: Box Provider: libvirt
    default: Box Version: >= 0
==> default: Box file was not detected as metadata. Adding it directly...
==> default: Adding box 'devops-appserver' (v0) for provider: libvirt
    default: Downloading: devops-appserver
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

Couldn't open file blah/blah/blah/udacity/devops-intro-project/packer-templates/virtualbox/devops-appserver

Why can't it find the devops-appserver?

System Info
OS: Fedora 30
Vagrant: 2.2.5
VirtualBox: 6.0.12_RPMFusion r132055
Packer: v1.4.4-dev (2c9615a3e)

vagrant box add producing error

"vagrant box add ubuntu-14.04.4-server-amd64-appserver_virtualbox.box --name devops-appserver" producing the following error.

==> box: Box file was not detected as metadata. Adding it directly...
==> box: Adding box 'devops-appserver' (v0) for provider:
box: Downloading: ubuntu-14.04.4-server-amd64-appserver_virtualbox.box
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

Also, after installing ubuntu in Virtualbox, when i shutdown the VM, the terminal still shows the following:

virtualbox-iso output will be in this color.

==> virtualbox-iso: Cannot find "Default Guest Additions ISO" in vboxmanage output (or it is empty)
==> virtualbox-iso: Downloading or copying Guest additions checksums
virtualbox-iso: Downloading or copying: http://download.virtualbox.org/virtualbox/5.1.28/SHA256SUMS
==> virtualbox-iso: Downloading or copying Guest additions
virtualbox-iso: Downloading or copying: http://download.virtualbox.org/virtualbox/5.1.28/VBoxGuestAdditions_5.1.28.iso
==> virtualbox-iso: Downloading or copying ISO
virtualbox-iso: Downloading or copying: http://old-releases.ubuntu.com/releases/14.04.4/ubuntu-14.04.4-server-amd64.iso
==> virtualbox-iso: Starting HTTP server on port 8939
==> virtualbox-iso: Creating virtual machine...
==> virtualbox-iso: Creating hard drive...
==> virtualbox-iso: Creating forwarded port mapping for communicator (SSH, WinRM, etc) (host port 3456)
==> virtualbox-iso: Executing custom VBoxManage commands...
virtualbox-iso: Executing: modifyvm ubuntu-14.04.4-server-amd64 --memory 1024
virtualbox-iso: Executing: modifyvm ubuntu-14.04.4-server-amd64 --cpus 2
==> virtualbox-iso: Starting the virtual machine...
==> virtualbox-iso: Waiting 10s for boot...
==> virtualbox-iso: Typing the boot command...
==> virtualbox-iso: Waiting for SSH to become available..

Unable to install Grunt

I tried running the command grunt -v, but couldn't, saying it was unable to locate local grunt. I tried installing it manually, but it returns the following error.

image

Here's the npm debug log.

npm-debug.log

Can anyone help?

Packer.exe is just flashing

I downloaded the files, after unzipping the packer zip file, I double clicked on the packer.exe then it just opened and closed
Help me...

Use of latest packages and distros in the build config

I see the configuration has

  • Ubuntu 14.04
  • Node 0.10.something ( support expires this October )
    Both of which will not be supported after some time.

1 > Why is the script not using Ubuntu 16.04?

Moreover I saw an eye-poping line, isn't that too much space, for a basic vm-image?

    virtualbox-iso: 7374503936 bytes (7.4 GB) copied, 18.8767 s, 391 MB/s

Packer Build Issue

Last login: Fri Aug 17 13:18:10 on ttys001
sreedhars-MacBook-Pro:~ sreedharailu$ echo $PATH
/usr/bin:/bin:/usr/sbin:/sbin
sreedhars-MacBook-Pro:~ sreedharailu$ packer build -only=virtualbox-iso application-server.json
-bash: packer: command not found
sreedhars-MacBook-Pro:~ sreedharailu$

I would like to know how to exactly set path in Mac as the packer is downloaded through binary in my downloads.

Thank you.

Jenkins issue on Ubuntu 14.04.5

Hi,

It seems that Jenkins is not installed properly due to dos2unix not running properly on the install_jenkins_plugins.sh script.
After debugging, seems dos2unix is not installed.

I added apt-get dos2unix it it works fine

packer build -only=virtualbox-iso application-server.json

packer build -only=virtualbox-iso application-server.json on centos 7 bare metal machine.

command running more than 6 hrs with no error message or output.

how long it take to get the output.

do i need to do any custom modify to application-server.json file. please advice

Running packer with Ubuntu

I had trouble running Packer with ubuntu-14.04.4, receiving the following console errors:

$ packer build -only=virtualbox-iso application-server.json
virtualbox-iso output will be in this color.

==> virtualbox-iso: Downloading or copying Guest additions
virtualbox-iso: Downloading or copying: file:///C:/Program%20Files/Oracle/VirtualBox/VBoxGuestAdditions.iso
==> virtualbox-iso: Downloading or copying ISO
virtualbox-iso: Downloading or copying: http://releases.ubuntu.com/trusty/ubuntu-14.04.4-server-amd64.iso
virtualbox-iso: Error downloading: checksums didn't match expected: 07e4bb5569814eab41fafac882ba127893e3ff0bdb7ec931c9b2d040e3e94e7a
==> virtualbox-iso: ISO download failed.
Build 'virtualbox-iso' errored: ISO download failed.

I tried to locate the actual "iso_checksum" online but couldn't find 14.04.4, only 14.04.3 and 14.04.5 (might have looked in the wrong place), so I decided to try to upgrade to 14.04.5 since it seemed like the logical next approach.

Change all references of:

ubuntu-14.04.4-server-amd64

to:

ubuntu-14.04.5-server-amd64

Then change "iso_checksum" to f5ce20686a2f3201f04a309d04171ee15757f00954b33b87f3f1d36b3b0f5356

I found the above value here: http://releases.ubuntu.com/14.04/SHA256SUMS

But this resulted in the following similar error:

virtualbox-iso: Error downloading: checksums didn't match expected: f5ce20686a2f3201f04a309d04171ee15757f00954b33b87f3f1d36b3b0f5356

Can someone either supply the correct checksum for 14.04.4 or 14.04.5 or else help me understand where I've gone wrong in this process? Thank you, much appreciated!

Issues with installing the webapp

I'm stuck on lesson 2 chapter 12 of Intro to DevOps course.
When I do sudo npm install, I already get the following errors

> [email protected] install /home/vagrant/devops-kung/node_modules/grunt-sass/node_modules/node-sass
> node build.js


/home/vagrant/devops-kung/node_modules/grunt-sass/node_modules/node-sass/node_modules/mocha/node_modules/debug/src/node.js:120
exports.inspectOpts = Object.keys(process.env).filter(key => {
                                                           ^
SyntaxError: Unexpected token >
    at Module._compile (module.js:439:25)
    at Object.Module._extensions..js (module.js:474:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Module.require (module.js:364:17)
    at require (module.js:380:17)
    at Object.<anonymous> (/home/vagrant/devops-kung/node_modules/grunt-sass/node_modules/node-sass/node_modules/mocha/node_modules/debug/src/index.js:9:19)
    at Module._compile (module.js:456:26)
    at Object.Module._extensions..js (module.js:474:10)
    at Module.load (module.js:356:32)
npm ERR! Linux 4.4.0-142-generic
npm ERR! argv "/usr/bin/node" "/usr/bin/npm" "install"
npm ERR! node v0.10.48
npm ERR! npm  v2.15.1
npm ERR! code ELIFECYCLE

npm ERR! [email protected] install: `node build.js`
npm ERR! Exit status 8
npm ERR!
npm ERR! Failed at the [email protected] install script 'node build.js'.
npm ERR! This is most likely a problem with the node-sass package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node build.js
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs node-sass
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!
npm ERR!     npm owner ls node-sass
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     /home/vagrant/devops-kung/npm-debug.log

Running the tests with grunt -v also yields errors, unlike in the video

/home/vagrant/devops-kung/node_modules/grunt-sass/tasks/sass.js:3
const util = require('util');
^^^^^
Loading "sass.js" tasks...ERROR
>> SyntaxError: Use of const in strict mode.
>>     at Module._compile (module.js:439:25)
>>     at Object.Module._extensions..js (module.js:474:10)
>>     at Module.load (module.js:356:32)
>>     at Function.Module._load (module.js:312:12)
>>     at Module.require (module.js:364:17)
>>     at require (module.js:380:17)
>>     at loadTask (/home/vagrant/devops-kung/node_modules/grunt/lib/grunt/task.js:323:10)
>>     at /home/vagrant/devops-kung/node_modules/grunt/lib/grunt/task.js:361:7
>>     at Array.forEach (native)
>>     at loadTasks (/home/vagrant/devops-kung/node_modules/grunt/lib/grunt/task.js:360:11)

Then I'm told to visit localhost:8080 on my browser, which just gives me a "403 Forbidden" screen. This does not seem intended. Please help so I can continue the course.

Vagrant box add problem 'URL using bad/illegal format or missing URL'

vagrant box add ubuntu-14.04.6-server-amd64-appserver_virtualbox.box --name devops-appserver
==> box: Box file was not detected as metadata. Adding it directly...
==> box: Adding box 'devops-appserver' (v0) for provider:
box: Unpacking necessary files from: file://C/Users/marja/Desktop/packer-templates/devops/packer-templates/virtualbox/ubuntu-14.04.6-server-amd64-appserver_virtualbox.box
box:
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

URL using bad/illegal format or missing URL

Packer Build Error Making HTTP GET Request 404

virtualbox-iso output will be in this color.

==> virtualbox-iso: Retrieving Guest additions
    virtualbox-iso: Using file in-place: file:///C:/Program%20Files/Oracle/VirtualBox/VBoxGuestAdditions.iso
==> virtualbox-iso: Retrieving ISO
    virtualbox-iso: Error downloading: Error making HTTP GET request: 404 Not Found
==> virtualbox-iso: ISO download failed.
Build 'virtualbox-iso' errored: ISO download failed.

==> Some builds didn't complete successfully and had errors:
--> virtualbox-iso: ISO download failed.

==> Builds finished but no artifacts were created.

aws problems

Since I'm not really familiar with AWS, I'm having the following error:
"Build 'amazon-ebs' errored after 6 seconds 144 milliseconds: no valid credential sources for found."
when trying to execute: packer build -only=amazon-ebs application-server.json/control-server.json.
I guess that I'm missing some credientals, but which one?

Grunt installation failing

Hi guys, when I try to install grunt locally on the VM. It attempts to install it then throws up a bunch of errors then uninstall it's self from node_modules.

Here is the errors.

vagrant@vagrant:~/devops-kungfu$ npm install grunt --save-dev
npm WARN engine [email protected]: wanted: {"node":">= 6"} (current: {"node":"0.10.48","npm":"2.15.1"})
npm WARN engine [email protected]: wanted: {"node":">=6"} (current: {"node":"0.10.48","npm":"2.15.1"})
npm WARN engine [email protected]: wanted: {"node":">=4"} (current: {"node":"0.10.48","npm":"2.15.1"})
npm WARN engine [email protected]: wanted: {"node":">=4"} (current: {"node":"0.10.48","npm":"2.15.1"})
npm WARN engine [email protected]: wanted: {"node":">=4"} (current: {"node":"0.10.48","npm":"2.15.1"})
npm WARN engine [email protected]: wanted: {"node":">=4"} (current: {"node":"0.10.48","npm":"2.15.1"})
npm WARN engine [email protected]: wanted: {"node":">=4"} (current: {"node":"0.10.48","npm":"2.15.1"})
npm ERR! Linux 4.4.0-142-generic
npm ERR! argv "/usr/bin/node" "/usr/bin/npm" "install" "grunt" "--save-dev"
npm ERR! node v0.10.48
npm ERR! npm  v2.15.1
npm ERR! path ../nopt/bin/nopt.js
npm ERR! code UNKNOWN
npm ERR! errno -1

npm ERR! UNKNOWN, symlink '../nopt/bin/nopt.js'
npm ERR!
npm ERR! If you need help, you may report this error at:
npm ERR!     <https://github.com/npm/npm/issues>

npm ERR! Please include the following file with any support request:
npm ERR!     /home/vagrant/devops-kungfu/npm-debug.log

Packer-Templates - Packer Build - Failed to retrieve the pre-configuration file

Hi, when trying to build a box with Packer, it first stalls at "==> virtualbox-iso: Waiting for SSH to become available..."; I believe it's running preseed configs in the background. An hour later, it displays the error: "Failed to retrieve the reconfiguration file. The file needed for reconfiguration could not be retrieved from HTTP://10.0.2.2:8029/preseed.cfg. The installation will proceed in non-automated mode.

Please advise of a valid URL for the preseed file, or the work around this huddle.

Unable to install packer and set variable

I am trying to install packer on my machine but its says , no command packer found.
I was successfully able to unzip it ,but i am getting tough time to set an variable path.

can you please guide me how to set a variable. the packer is installed at" /home/ubuntu" location.

thanks

virtualbox-iso: ISO download failed. Build 'virtualbox-iso' errored: ISO download failed.

run packer command on Windows 10:
packer build -only=virtualbox-iso application-server.json

got the following error:

==> virtualbox-iso: Downloading or copying Guest additions
virtualbox-iso: Downloading or copying: file://C:/Program%20Files/Oracle/VirtualBox/VBoxGuestAdditions.iso
==> virtualbox-iso: Downloading or copying ISO
virtualbox-iso: Downloading or copying: http://releases.ubuntu.com/trusty/ubuntu-14.04.4-server-amd64.iso
virtualbox-iso: Error downloading: checksums didn't match expected: 07e4bb5569814eab41fafac882ba127893e3ff0bdb7ec931c9b2d040e3e94e7a
==> virtualbox-iso: ISO download failed.
Build 'virtualbox-iso' errored: ISO download failed.

==> Some builds didn't complete successfully and had errors:
--> virtualbox-iso: ISO download failed.

==> Builds finished but no artifacts were created.

See the similiar issues were raised and fixed before. It now resurfaces because of new release, 14.04.05?

Failed to parse template: open application-server.json:

Hi there,

I keep getting Failed to parse template, the application-server.json is there and I ran the command under Home@Home-PC MINGW64 /c/Program Files/Packer and also added pakers path to environment variable
and all the other executables as well.

Home@Home-PC MINGW64 /c/Program Files/Packer
$ packer build -only=virtualbox-iso application-server.json Failed to parse template: open application-server.json: The system cannot find the file specified.

I am logged-in as Administrator and folder has full access.

Any suggestions would be appreciated!

Packer download ISO error

Can refer to http://download.virtualbox.org/virtualbox/ and http://releases.ubuntu.com/trusty/

Modify the application-server.json code according to your virtualbox version, latest ubuntu version and SHA256SUMS.

examples:
"guest_additions_path": "VBoxGuestAdditions_5.2.2.iso", "guest_additions_url": "http://download.virtualbox.org/virtualbox/5.2.2/VBoxGuestAdditions_5.2.2.iso", "guest_os_type": "Ubuntu_64", "http_directory": "http", "iso_checksum": "8317a0479a94877829b20a19df8a7c09187b31eecb3f1ed9d2b8cb8681a81bb8", "iso_checksum": "dde07d37647a1d2d9247e33f14e91acb10445a97578384896b4e1d985f754cc1", "iso_checksum_type": "sha256", "iso_url": "http://releases.ubuntu.com/trusty/{{ userPACKER_BOX_NAME}}.iso",

bash: cd: packer-templates: No such file or directory

Hi, I receive the following error:
wayne@main MINGW64 ~
$ cd packer-templates
bash: cd: packer-templates: No such file or directory

Please assist. Thank you in advance.

Below is a copy of the git clone command for reference:

wayne@main MINGW64 ~
$ git clone http://github.com/waynedou1/devops-intro-project devops Cloning into 'devops'...
warning: redirecting to https://github.com/waynedou1/devops-intro-project/
remote: Enumerating objects: 206, done.
remote: Total 206 (delta 0), reused 0 (delta 0), pack-reused 206
Receiving objects: 65% (134/206)
Receiving objects: 100% (206/206), 41.36 KiB | 536.00 KiB/s, done.
Resolving deltas: 100% (105/105), done.

Got an error when packer build

When i run command:

packer build -only=virtualbox-iso application-server.json

I got error:
`Failed to initialize build 'virtualbox-iso': builder type not found: virtualbox-iso
virtualbox-iso output will be in this color.

==> Builds finished but no artifacts were created.`

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.