-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Packer template for ubuntu-desktop changed to match the server version of the template
- Loading branch information
Showing
8 changed files
with
58 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
#!/bin/bash -eux | ||
|
||
REMOTE_IP="192.168.121.70" | ||
REMOTE_USER="root" | ||
REMOTE_USER="vagrant" | ||
|
||
# Build ALL images (this takes several hours) | ||
ansible-playbook -i "$REMOTE_IP," --user $REMOTE_USER ansible/build_remote_ssh.yml | ||
|
||
# Build single image - windows_10:virtualbox | ||
#ansible-playbook -i "$REMOTE_IP," --user $REMOTE_USER --extra-vars 'run_script="./build.sh windows_10:virtualbox"' ansible/build_remote_ssh.yml | ||
|
||
# Build multiple images - windows_10 (virtualbox, libvirt) and ubuntu-server-16.04 (libvirt) | ||
#ansible-playbook -i "$REMOTE_IP," --user $REMOTE_USER --extra-vars 'run_script="./build.sh windows_10:virtualbox windows_10:libvirt ubuntu-server-16.04:libvirt"' ansible/build_remote_ssh.yml | ||
|
||
# Build multiple images - windows_10 (virtualbox, libvirt) and ubuntu-server-18.04 (libvirt) | ||
#ansible-playbook -i "$REMOTE_IP," --user $REMOTE_USER --extra-vars 'run_script="./build.sh windows_10:virtualbox windows_10:libvirt ubuntu-server-18.04:libvirt"' ansible/build_remote_ssh.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,22 +15,25 @@ This script can upload Packer box images to Vagrant Cloud. | |
You need to define the "VAGRANTUP_ACCESS_TOKEN" variable with proper access token. | ||
Box names: | ||
* my_centos-7-x86_64-libvirt.box | ||
* my_ubuntu-14.04-server-amd64-libvirt.box | ||
* my_ubuntu-16.04-server-amd64-libvirt.box | ||
* ubuntu-14.04-server-amd64-libvirt.box | ||
* ubuntu-16.04-server-amd64-libvirt.box | ||
* ubuntu-17.10-desktop-amd64-libvirt.box | ||
* windows-10-enterprise-x64-eval-libvirt.box | ||
* windows-10-enterprise-x64-eval-virtualbox.box | ||
* my_windows-10-enterprise-x64-eval-libvirt.box | ||
* my_windows-10-enterprise-x64-eval-virtualbox.box | ||
* windows-server-2012-r2-standard-x64-eval-libvirt.box | ||
* windows-server-2012-r2-standard-x64-eval-virtualbox.box | ||
* windows-server-2016-standard-x64-eval-libvirt.box | ||
* windows-server-2016-standard-x64-eval-virtualbox.box | ||
Box names with user: | ||
* peru@my_centos-7-x86_64-libvirt.box | ||
* peru@my_ubuntu-14.04-server-amd64-libvirt.box | ||
* peru@my_ubuntu-16.04-server-amd64-libvirt.box | ||
* peru@my_ubuntu-18.04-server-amd64-libvirt.box | ||
* [email protected] | ||
* [email protected] | ||
* [email protected] | ||
* [email protected] | ||
* [email protected] | ||
* [email protected] | ||
* [email protected] | ||
* peru@my_windows-10-enterprise-x64-eval-libvirt.box | ||
* peru@my_windows-10-enterprise-x64-eval-virtualbox.box | ||
* [email protected] | ||
* [email protected] | ||
* [email protected] | ||
* [email protected] | ||
Examples: | ||
|