From a397495ad89b3398d351263619446e3e07203679 Mon Sep 17 00:00:00 2001 From: Les De Ridder Date: Thu, 5 May 2016 04:24:50 +0200 Subject: [PATCH] Add license --- LICENSE.md | 31 +++++++++++++++++++++++++++++++ README.md | 1 + utils.fish | 1 - 3 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 LICENSE.md diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..2cc6a66 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,31 @@ +University of Illinois/NCSA +Open Source License + +Copyright (c) 2016, Les De Ridder +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +* Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + +* Neither the name of btrfish nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. diff --git a/README.md b/README.md index 76f34b0..35b56d2 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ btrfish depends on fish, btrfs, and ssh. ## TODO * Recovery from transmission errors * Backup management + * Correct file ownership on the target machine * ... ## License diff --git a/utils.fish b/utils.fish index bfa35ee..e742b82 100755 --- a/utils.fish +++ b/utils.fish @@ -1,7 +1,6 @@ #!/usr/bin/fish function get-subvol-mounts - #cat /etc/fstab | grep subvol | sed 's/.*subvol=//;s/)//;s/\t\| \|0//g' cat /etc/fstab | grep btrfs | cut -d\t -f2,4 | sed 's/\(.*\)\t.*,subvol=\(.*\)$/\2 \1/' end