Class: IESD::DMG::BaseSystem

Inherits:
HDIUtil::DMG show all
Defined in:
lib/iesd/InstallESD/BaseSystem.dmg.rb

Overview

BaseSystem.dmg

The installer DMG before OS X Lion.

Direct Known Subclasses

InstallESD::BaseSystem

Defined Under Namespace

Classes: Extensions

Constant Summary collapse

PACKAGES =

The relative path to the Packages.

File.join %w[ System Installation Packages ]

Instance Attribute Summary

Attributes inherited from HDIUtil::DMG

#url

Instance Method Summary collapse

Methods inherited from HDIUtil::DMG

#edit, #initialize, #show, #update, #valid?

Constructor Details

This class inherits a constructor from HDIUtil::DMG

Instance Method Details

#export(options) ⇒ Object

Export to a new DMG.

options - The Dictionary of the export options



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/iesd/InstallESD/BaseSystem.dmg.rb', line 15

def export options
  case options[:type]
  when :BaseSystem, nil
    Dir.mktmpdir { |tmp|
      HDIUtil.write(@url, (tmpfile = File.join(tmp, File.basename(@url))), options[:hdiutil]) { |volume_root|
        options[:extensions][:up_to_date] = (options[:extensions][:uninstall].empty? and options[:extensions][:install].empty?)
        options[:mach_kernel] = File.exist? File.join(volume_root, "mach_kernel") if options[:mach_kernel].nil?

        yield volume_root if block_given?

        pre_update_extension volume_root, options

        IESD::DMG::BaseSystem::Extensions.new(volume_root).update options[:extensions]

        post_update_extension volume_root, options

        if options[:interactive]
          oh1 "Starting Interactive Shell"
          puts "Environment: BaseSystem"
          HDIUtil.shell volume_root
        end
      }
      system("/usr/bin/env", "mv", tmpfile, options[:output])
    }
  else
    raise "invalid output type"
  end
end