Skip to content

Commit 5cd3c79

Browse files
author
root
committed
fix: use require_relative to require puppet_x
1 parent 16b57bc commit 5cd3c79

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/facter/logical_volumes.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setcode do
1111
# Require the helper methods to reduce duplication
12-
require 'puppet_x/lvm/output'
12+
require_relative '../puppet_x/lvm/output'
1313

1414
# List columns here that can be passed to the lvs -o command. Dont't
1515
# include things in here that might be bland as we currently can't deal

lib/facter/physical_volumes.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setcode do
1111
# Require the helper methods to reduce duplication
12-
require 'puppet_x/lvm/output'
12+
require_relative '../puppet_x/lvm/output'
1313

1414
# List columns here that can be passed to the lvs -o command. Dont't
1515
# include things in here that might be bland as we currently can't deal

lib/facter/volume_groups.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setcode do
1111
# Require the helper methods to reduce duplication
12-
require 'puppet_x/lvm/output'
12+
require_relative '../puppet_x/lvm/output'
1313

1414
# List columns here that can be passed to the lvs -o command. Dont't
1515
# include things in here that might be bland as we currently can't deal

0 commit comments

Comments
 (0)