From 25f3947c16b57a9686500534e44423aab90b0bc7 Mon Sep 17 00:00:00 2001 From: Patrick J Cherry Date: Wed, 9 Nov 2016 09:30:12 +0000 Subject: First pass at fixing btrfs path This replaces the call to /sbin/btrfs with a method to find a btrfs program, which raises ENOENT if one cannot be found. --- bin/byteback-setup-client-receive | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/byteback-setup-client-receive') diff --git a/bin/byteback-setup-client-receive b/bin/byteback-setup-client-receive index 3673b6a..528ccc9 100755 --- a/bin/byteback-setup-client-receive +++ b/bin/byteback-setup-client-receive @@ -32,7 +32,7 @@ Dir.chdir(ENV['HOME']) # don't know why we wouldn't be here FileUtils.mkdir_p(@hostname) error("Couldn't create btrfs subvolume") unless - system("/sbin/btrfs subvolume create #{@hostname}/current") + system("#{btrfs_bin} subvolume create #{@hostname}/current") FileUtils.mkdir_p('.ssh') -- cgit v1.2.3