summaryrefslogtreecommitdiff
path: root/modules/syslinux/lib/facter/efibootmgr.rb
diff options
context:
space:
mode:
Diffstat (limited to 'modules/syslinux/lib/facter/efibootmgr.rb')
-rw-r--r--modules/syslinux/lib/facter/efibootmgr.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/modules/syslinux/lib/facter/efibootmgr.rb b/modules/syslinux/lib/facter/efibootmgr.rb
deleted file mode 100644
index 81a3dc3..0000000
--- a/modules/syslinux/lib/facter/efibootmgr.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-if Facter::Core::Execution.which('efibootmgr') then
- Facter.add('efi') do
- setcode do
- out = {}
- data = Facter::Core::Execution.execute('efibootmgr')
- boots = {}
- data.split("\n").each do |item|
- if a = item.match(/BootOrder: (.*)/) then
- out['BootOrder'] = a[1].split(',')
- elsif a = item.match(/(\w*): (.*)/) then
- out[a[1]] = a[2]
- elsif a = item.match(/Boot(\d*)(\*?) (.*)/)
- # a[2] contains if it's active
- boots[a[1]] = a[3]
- end
- end
- out['boots'] = boots
- out
- end
- end
-end