From a1f1b1b5393346bd95c0436cb9a7a905e2faeaaf Mon Sep 17 00:00:00 2001 From: "G. Gibson" Date: Fri, 10 Mar 2023 11:41:31 -0800 Subject: [PATCH] Installer support tweaks --- Services/core.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Services/core.rb b/Services/core.rb index 836873b..45e0268 100755 --- a/Services/core.rb +++ b/Services/core.rb @@ -23,7 +23,6 @@ end end end end -puts "Paths: #{::GxG::SYSTEM_PATHS.inspect}" # ### Mount Databases by role if File.exists?("#{GxG::SYSTEM_PATHS[:configuration]}/databases.json") handle = File.open("#{GxG::SYSTEM_PATHS[:configuration]}/databases.json", "rb") @@ -144,7 +143,7 @@ end ::GxG::VFS.mount(::GxG::Storage::Volume.new({:directory => ::GxG::SYSTEM_PATHS[:system]}), "/System") ::GxG::VFS.mount(::GxG::Storage::Volume.new({:directory => ::GxG::SYSTEM_PATHS[:services]}), "/Services") # User-Agent code goes in '/Applications'. Rename to '/Agents' ?? -::GxG::VFS.mount(::GxG::Storage::Volume.new({:directory => ::GxG::SYSTEM_PATHS[:applications]}), "/Applications") +::GxG::VFS.mount(::GxG::Storage::Volume.new({:directory => ::GxG::SYSTEM_PATHS[:installers]}), "/Installers") ::GxG::VFS.mount(::GxG::Storage::Volume.new({:directory => ::GxG::SYSTEM_PATHS[:temporary]}), "/Temporary") ::GxG::VFS.mount(::GxG::Storage::Volume.new({:directory => ::GxG::SYSTEM_PATHS[:logs]}), "/Logs") ::GxG::VFS.mount(::GxG::Storage::Volume.new({:directory => ::GxG::SYSTEM_PATHS[:public]}), "/Public")