-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #68 from juliandunn/sles-11-sp3
Added definitions for SUSE Linux Enterprise Server 11 SP3.
- Loading branch information
Showing
14 changed files
with
5,188 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash -eux | ||
|
||
# remove zypper locks on removed packages to avoid later dependency problems | ||
zypper --non-interactive rl \* | ||
# zypper --non-interactive remove `rpm -qa virtualbox-guest-*` >/dev/null 2>&1 | ||
# Add an online copy of the SLES DVD1 as a software repository, instead of the mounted DVD | ||
zypper removerepo 'SUSE-Linux-Enterprise-Server-11-SP3 11.3.3-1.138' | ||
zypper addrepo 'http://demeter.uni-regensburg.de/SLES11SP3-x86/DVD1/' 'SLES11SP3-x86 DVD1 Online' | ||
zypper refresh |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
require File.dirname(__FILE__) + "/../.suse/session.rb" | ||
|
||
iso = "SLES-11-SP3-DVD-i586-GM-DVD1.iso" | ||
|
||
session = | ||
SUSE_SESSION.merge( :memory_size=> '480', | ||
:iso_download_instructions => "Download 60-day evaluation from http://download.novell.com/protected/Summary.jsp?buildid=4uiuDMzX0ck~", | ||
:iso_file => iso, | ||
:iso_md5 => "5c30a409fc8fb3343b4dc90d93ff2c89", | ||
:iso_src => "") | ||
|
||
Veewee::Session.declare session |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
../.common/minimize.sh |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
../.common/sshd.sh |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
../.suse/sudoers.sh |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
../.common/vagrant.sh |
Oops, something went wrong.