-
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 #59 from juliandunn/BENTO-48
[BENTO-48] Add SLES11 SP2 definitions
- Loading branch information
Showing
14 changed files
with
5,204 additions
and
21 deletions.
There are no files selected for viewing
This file was deleted.
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,18 @@ | ||
require File.dirname(__FILE__) + "/../.common/session.rb" | ||
|
||
SUSE_SESSION = | ||
COMMON_SESSION.merge({ :boot_cmd_sequence => [ | ||
'<Esc><Enter>', | ||
'linux netdevice=eth0 netsetup=dhcp install=cd:/', | ||
' lang=en_US autoyast=http://%IP%:%PORT%/autoinst.xml', | ||
' textmode=1', | ||
'<Enter>' | ||
], | ||
# in here twice for a reason - YaST2 requests it twice | ||
:kickstart_file => ["autoinst.xml", "autoinst.xml"], | ||
:os_type_id => 'OpenSUSE_64', | ||
:postinstall_files => [ "vagrant.sh", | ||
"sshd.sh", | ||
"cleanup.sh", | ||
"minimize.sh" ], | ||
:shutdown_cmd => "/sbin/halt -h -p" }) |
Oops, something went wrong.