Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated to OpenSUSE Leap 42.2 #723

Merged
merged 2 commits into from
Nov 22, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
<dhcp_hostname config:type="boolean">true</dhcp_hostname>
<dhcp_resolv config:type="boolean">true</dhcp_resolv>
<domain>vagrantup.com</domain>
<hostname>opensuse-leap-42.1-x64</hostname>
<hostname>opensuse-leap-42.2-x64</hostname>
</dns>
<interfaces config:type="list">
<interface>
Expand Down
22 changes: 11 additions & 11 deletions opensuse-leap-42.1-x86_64.json → opensuse-leap-42.2-x86_64.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"boot_command": [
"<esc><enter><wait>",
"linux netsetup=dhcp install=cd:/<wait>",
" lang=en_US.UTF-8 autoyast=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{user `autoinst_cfg`}}<wait>",
" lang=en_US autoyast=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{user `autoinst_cfg`}}<wait>",
" textmode=1<wait>",
"<enter><wait>"
],
Expand Down Expand Up @@ -46,7 +46,7 @@
"boot_command": [
"<esc><enter><wait>",
"linux netsetup=dhcp install=cd:/<wait>",
" lang=en_US.UTF-8 autoyast=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{user `autoinst_cfg`}}<wait>",
" lang=en_US autoyast=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{user `autoinst_cfg`}}<wait>",
" textmode=1<wait>",
"<enter><wait>"
],
Expand Down Expand Up @@ -77,7 +77,7 @@
"boot_command": [
"<esc><enter><wait>",
"linux netsetup=dhcp netdevice=eth0 install=cd:/<wait>",
" lang=en_US.UTF-8 autoyast=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{user `autoinst_cfg`}}<wait>",
" lang=en_US autoyast=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{user `autoinst_cfg`}}<wait>",
" textmode=1<wait>",
"<enter><wait>"
],
Expand Down Expand Up @@ -117,7 +117,7 @@
"boot_command": [
"<esc><enter><wait>",
"linux netsetup=dhcp netdevice=eth0 install=cd:/<wait>",
" lang=en_US.UTF-8 autoyast=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{user `autoinst_cfg`}}<wait>",
" lang=en_US autoyast=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{user `autoinst_cfg`}}<wait>",
" textmode=1<wait>",
"<enter><wait>"
],
Expand Down Expand Up @@ -176,25 +176,25 @@
],
"variables": {
"arch": "64",
"autoinst_cfg": "opensuse-leap-42.1/autoinst.xml",
"box_basename": "opensuse-leap-42.1",
"autoinst_cfg": "opensuse-leap-42.2/autoinst.xml",
"box_basename": "opensuse-leap-42.2",
"build_timestamp": "{{isotime \"20060102150405\"}}",
"cpus": "1",
"disk_size": "20480",
"git_revision": "__unknown_git_revision__",
"headless": "",
"http_proxy": "{{env `http_proxy`}}",
"https_proxy": "{{env `https_proxy`}}",
"iso_checksum": "8576e84822cdbe566bf551e28a169fc028229831eba9f07a4c1f84302c5ddb09",
"iso_checksum": "ba5af6b0ac4d42d801de642304eb88ca9fd65a61b6c3ff25724182494f288f00",
"iso_checksum_type": "sha256",
"iso_name": "openSUSE-Leap-42.1-DVD-x86_64.iso",
"iso_name": "openSUSE-Leap-42.2-DVD-x86_64.iso",
"memory": "768",
"metadata": "floppy/dummy_metadata.json",
"mirror": "http://suse.mobile-central.org/distribution",
"mirror_directory": "leap/42.1/iso",
"name": "opensuse-leap-42.1",
"mirror_directory": "leap/42.2/iso",
"name": "opensuse-leap-42.2",
"no_proxy": "{{env `no_proxy`}}",
"template": "opensuse-leap-42.1-x86_64",
"template": "opensuse-leap-42.2-x86_64",
"version": "2.0.TIMESTAMP"
}
}
11 changes: 10 additions & 1 deletion scripts/opensuse/cleanup.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
#!/bin/bash -eux
# These were only needed for building VMware/Virtualbox extensions:
zypper -n rm -u binutils gcc make perl ruby kernel-default-devel kernel-devel

version=`grep VERSION= /etc/os-release | cut -f2 -d\" | cut -f1 -d\ `

if [[ $version =~ "13" ]]; then
zypper -n rm -u binutils gcc make perl ruby kernel-default-devel kernel-devel
fi

if [[ $version =~ "4" ]]; then
zypper -n rm -u gcc make kernel-default-devel kernel-devel
fi