Method: Bandshell::LiveImage.mountpoint

Defined in:
lib/bandshell/live_image.rb

.mountpointObject



7
8
9
10
11
12
13
14
15
# File 'lib/bandshell/live_image.rb', line 7

def self.mountpoint
  if File.exist? '/etc/concerto/medium_path'
    IO.read('/etc/concerto/medium_path').chomp
  else
    # sane default for Debian Live-based systems
    # (as of 2013-04-24)
    '/lib/live/mount/medium'
  end
end