Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ohpc_vagrant
Manage
Activity
Members
Labels
Plan
Issues
6
Issue boards
Milestones
Wiki
Code
Merge requests
5
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
John-Paul Robinson
ohpc_vagrant
Merge requests
!19
fixed the .iso download to work on Mac
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fixed the .iso download to work on Mac
tr27p/ohpc_vagrant:fix-mac-pxe.iso
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Trupeshkumar Rajendrabhai Patel
requested to merge
tr27p/ohpc_vagrant:fix-mac-pxe.iso
into
master
6 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
wget is not avilable for Mac by default so used curl.
👍
1
👎
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
550eb5fd
1 commit,
6 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
compute_create
+
1
−
1
Options
@@ -17,7 +17,7 @@ fi
# Download the ipxe.iso boot image if it doesn't already exist
if
[[
!
-f
"
$HOME
/iso/ipxe.iso"
]]
;
then
echo
"Downloading the network boot ipxe.iso file"
wget
-
O
~/iso/ipxe.iso http://boot.ipxe.org/ipxe.iso
crul
-
o
~/iso/ipxe.iso http://boot.ipxe.org/ipxe.iso
fi
VBoxManage createvm
--name
"
$nodename
"
--register
Loading