# HG changeset patch # User Heiko Schlittermann (JUMPER) # Date 1313746393 -7200 # Node ID b59ac57deb15aceeee1d8124089d06013772795e # Parent 67a19ad36d8f822ac931e1263e4df8ba1ace1aa5 Changed license to GPL. diff -r 67a19ad36d8f -r b59ac57deb15 Build.PL --- a/Build.PL Sun Aug 07 12:25:10 2011 +0200 +++ b/Build.PL Fri Aug 19 11:33:13 2011 +0200 @@ -6,7 +6,7 @@ dist_name => "blockfuse", dist_author => "Heiko Schlittermann ", dist_version_from => "bin/blockfuse", - license => "restrictive", + license => "GPL", script_files => [glob "bin/*"], requires => { perl => "5.10.0", diff -r 67a19ad36d8f -r b59ac57deb15 bin/blockfuse --- a/bin/blockfuse Sun Aug 07 12:25:10 2011 +0200 +++ b/bin/blockfuse Fri Aug 19 11:33:13 2011 +0200 @@ -1,12 +1,25 @@ #! /usr/bin/perl -# © Heiko Schlittermann -# source: https://ssl.schlittermann.de/hg/blockfuse (hg repo) -# # RSYNC can't sync block devices to files (something like # rsync /dev/sda2 /images/sda2 does not work. There are # patches for rsync around, but I didn't like to patch # rsync…) + +# Copyright (C) 2011 Heiko Schlittermann # +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + + # blockfuse maps the block devices found in /dev/ to regular # files in your mountpoint. Currently it fakes the mtime to force # rsync comparing the source and destination! @@ -16,10 +29,6 @@ # Just a short hack, no nice documentation, nothing else. -# LICENSE: -# If your're insterested in extending this tool, please tell me, I'm -# willing to put it under some Open Source License. (Currently it's -# not!) use 5.010; use strict; @@ -150,10 +159,13 @@ =back -=head1 AUTHOR and SOURCE +=head1 AUTHOR, COPYRGIHT and SOURCE Heiko Schlittermann +The program is licensed under the conditions of the GPL, please the +the source file for details. + Source: L =cut