1.4.5 changed shebang to '#!/usr/bin/env perl' for enhanced FreeBSD compatibility

This commit is contained in:
Jim Salter 2016-05-23 12:35:11 -04:00
parent 50b258cad1
commit 839d65d808
6 changed files with 12 additions and 9 deletions

View File

@ -1,3 +1,5 @@
1.4.5 altered shebang to '#!/usr/bin/env perl' for enhanced FreeBSD compatibility
1.4.4 merged pull requests from jjlawren for OmniOS compatibility, added --configdir=/path/to/configs CLI option to sanoid at jjlawrens' request presumably for same
1.4.3 added SSH persistence to syncoid - using socket speeds up SSH overhead 300%! =)

View File

@ -1 +1 @@
1.4.4
1.4.5

View File

@ -1,4 +1,4 @@
#!/usr/bin/perl
#!/usr/bin/env perl
# this software is licensed for use under the Free Software Foundation's GPL v3.0 license, as retrieved
# from http://www.gnu.org/licenses/gpl-3.0.html on 2014-11-17. A copy should also be available in this
@ -11,7 +11,7 @@ use warnings;
my $zfs = '/sbin/zfs';
my %args = getargs(@ARGV);
my $progversion = '1.4.3';
my $progversion = '1.4.5';
if ($args{'version'}) { print "$progversion\n"; exit 0; }

4
sanoid
View File

@ -1,10 +1,10 @@
#!/usr/bin/perl
#!/usr/bin/env perl
# this software is licensed for use under the Free Software Foundation's GPL v3.0 license, as retrieved
# from http://www.gnu.org/licenses/gpl-3.0.html on 2014-11-17. A copy should also be available in this
# project's Git repository at https://github.com/jimsalterjrs/sanoid/blob/master/LICENSE.
my $version = '1.4.4';
my $version = '1.4.5';
use strict;
use Config::IniFiles; # read samba-style conf file

View File

@ -2,7 +2,8 @@
# this is just a cheap way to trigger mutex-based checks for process activity.
#
# ie ./sleepymutex zfs receive data/lolz if you want a mutex hanging around as long as necessary that will show up
# to any routine that actively does something like "ps axo | grep 'zfs receive'" or whatever.
# ie ./sleepymutex zfs receive data/lolz if you want a mutex hanging around
# as long as necessary that will show up to any routine that actively does
# something like "ps axo | grep 'zfs receive'" or whatever.
sleep 99999

View File

@ -1,10 +1,10 @@
#!/usr/bin/perl
#!/usr/bin/env perl
# this software is licensed for use under the Free Software Foundation's GPL v3.0 license, as retrieved
# from http://www.gnu.org/licenses/gpl-3.0.html on 2014-11-17. A copy should also be available in this
# project's Git repository at https://github.com/jimsalterjrs/sanoid/blob/master/LICENSE.
my $version = '1.4.4';
my $version = '1.4.5';
use strict;
use Data::Dumper;