From 3be7922ab770ca9d32a896aaba18aec9dc31748d Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Mon, 7 Aug 2017 18:32:34 +0200 Subject: [PATCH] Framwork: add LICENSE generator and auto-generated file (cherry picked from commit a32ea6325a15c108de4b49c60b9ed781c086877b) (cherry picked from commit 6d49d71b2bf82bcba654e8f328287bcf2bc71264) --- LICENSE | 50 +++++++ Makefile | 5 + Scripts/license | 127 ++++++++++++++++++ .../src/etc/inc/plugins.inc.d/dyndns.inc | 2 +- .../inc/plugins.inc.d/dyndns/phpDynDNS.inc | 2 +- .../src/etc/inc/plugins.inc.d/dyndns/r53.inc | 4 +- dns/dyndns/src/etc/rc.dyndns | 2 +- .../widgets/widgets/dyn_dns_status.widget.php | 2 +- .../src/etc/inc/plugins.inc.d/rfc2136.inc | 2 +- dns/rfc2136/src/etc/rc.rfc2136 | 2 +- .../www/widgets/widgets/rfc2136.widget.php | 2 +- .../snmp/src/etc/inc/plugins.inc.d/bsnmpd.inc | 2 +- .../src/etc/inc/plugins.inc.d/igmpproxy.inc | 2 +- net/igmp-proxy/src/www/services_igmpproxy.php | 2 +- .../src/www/services_igmpproxy_edit.php | 2 +- .../src/etc/inc/plugins.inc.d/if_l2tp.inc | 2 +- net/l2tp/src/www/vpn_l2tp.php | 2 +- net/l2tp/src/www/vpn_l2tp_users.php | 2 +- net/l2tp/src/www/vpn_l2tp_users_edit.php | 2 +- .../src/etc/inc/plugins.inc.d/if_pppoe.inc | 2 +- net/pppoe/src/www/vpn_pppoe.php | 2 +- net/pppoe/src/www/vpn_pppoe_edit.php | 2 +- .../src/etc/inc/plugins.inc.d/if_pptp.inc | 2 +- .../Quagga/Api/Ospf6settingsController.php | 9 +- .../Quagga/Api/OspfsettingsController.php | 9 +- .../src/etc/inc/plugins.inc.d/relayd.inc | 2 +- .../widgets/load_balancer_status.widget.php | 9 +- .../scripts/OPNsense/Tinc/generate_keypair.py | 2 +- .../scripts/OPNsense/Tinc/lib/objects.py | 2 +- .../scripts/OPNsense/Tinc/list_ciphers.py | 2 +- .../opnsense/scripts/OPNsense/Tinc/tincd.py | 2 +- sysutils/smart/src/www/diag_smart.php | 4 +- 32 files changed, 223 insertions(+), 42 deletions(-) create mode 100644 LICENSE create mode 100755 Scripts/license diff --git a/LICENSE b/LICENSE new file mode 100644 index 000000000..0cbb37386 --- /dev/null +++ b/LICENSE @@ -0,0 +1,50 @@ +Copyright (c) 2016 +Copyright (c) 2015-2016 Ad Schellevis +Copyright (c) 2005-2008 Bill Marquette +Copyright (c) 2005-2006 Colin Smith +Copyright (c) 2011 Dan Myers +Copyright (c) 2017 David Harrigan +Copyright (c) 2014-2017 Deciso B.V. +Copyright (c) 2008 Donovan Schonknecht +Copyright (c) 2016-2017 EURO-LOG AG +Copyright (c) 2006 Eric Friesen +Copyright (c) 2008-2010 Ermal Luçi +Copyright (c) 2017 Fabian Franz +Copyright (c) 2014-2017 Franco Fichtner +Copyright (c) 2016-2017 Frank Wall +Copyright (c) 2010 Jim Pingle +Copyright (c) 2004-2005 Jonathan Watt +Copyright (c) 2015 Jos Schellevis +Copyright (c) 2003-2006 Manuel Kasper +Copyright (c) 2017 Michael Muenz +Copyright (c) 2012 Pierre POMES +Copyright (c) 2004-2012 Scott Ullrich +Copyright (c) 2010 Seth Mos +Copyright (c) 2008 Shrew Soft Inc. +Copyright (c) 2013 Stanley P. Miller \ stan-qaz +Copyright (c) 2004-2005 T. Lechat +Copyright (c) 2010 Yehuda Katz +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. diff --git a/Makefile b/Makefile index a01533e28..134452a61 100644 --- a/Makefile +++ b/Makefile @@ -23,3 +23,8 @@ ${TARGET}: @${MAKE} -C ${PLUGIN_DIR} ${TARGET} . endfor .endfor + +license: + @${.CURDIR}/Scripts/license . > ${.CURDIR}/LICENSE + +.PHONY: license diff --git a/Scripts/license b/Scripts/license new file mode 100755 index 000000000..22d1cb31e --- /dev/null +++ b/Scripts/license @@ -0,0 +1,127 @@ +#!/usr/bin/env perl + +# Copyright (c) 2017 Franco Fichtner +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. + +use strict; +use warnings; +use autodie; + +use Cwd; +use File::Find; +use File::Slurp; + +my $src = shift || 'src'; +my $cwd = getcwd; +my $lic = << 'END_LIC'; +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. +END_LIC + +my %copyrights = (); + +sub process_file +{ + my $filename = $File::Find::name; + + return if not -f "$cwd/$filename"; + + my @lines = read_file( "$cwd/$filename" ); + my $possibly_bsd; + + for my $line ( @lines ) { + $possibly_bsd = 1 if $line =~ /Redistribution and use in source and binary forms/i; + if ( $line =~ /Apache License/i ) { + $possibly_bsd = 0; + last; + } + } + + return if not $possibly_bsd; + + for my $line ( @lines ) { + my $copy = $line; + next if $line !~ s/copyright\s+\(c\)\s+//i; + $line =~ s/^[\*\\#\s]+//g; + $line =~ s/[\.\s]+$//g; + $line =~ s/Inc$/Inc./; + $line =~ s/B\.V$/B.V./; + chomp $copy; + $copy =~ s/^[\*\\#\s]+//g; + my ( $start, $end ) = ( 0, 9999 ); + if ( $line =~ s/(\d\d\d\d\s*,?-?\s*)// ) { + $start = $1; + $start =~ s/[,\s\-]+//g; + } + if ( $line =~ s/(\d\d\d\d\s*,?\s+)// ) { + $end = $1; + $end =~ s/[,\s]+//g; + } + $end = $start if $end == 9999; + say STDERR "Error in $filename: $copy" if $end == 0; + if ( exists $copyrights{$line} ) { + if ( $start > $copyrights{$line}[0] ) { + $start = $copyrights{$line}[0]; + } + if ( $copyrights{$line}[1] == 9999 or $end < $copyrights{$line}[1] ) { + $end = $copyrights{$line}[1]; + } + } + $copyrights{$line} = [ $start, $end ]; + } +} + +find( \&process_file, $src ); + +for ( sort keys %copyrights ) { + my $date = $copyrights{$_}[0]; + next if $date == 0; + $date = join '-', @{ $copyrights{$_} } if $copyrights{$_}[1] != $date; + print "Copyright (c) $date $_\n"; +} + +print $lic; diff --git a/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns.inc b/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns.inc index 59ac369e8..2ba2a44d7 100644 --- a/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns.inc +++ b/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns.inc @@ -2,7 +2,7 @@ /* Copyright (C) 2014-2017 Franco Fichtner - Copyright (C) 2010 Ermal Luci + Copyright (C) 2010 Ermal Luçi Copyright (C) 2005-2006 Colin Smith Copyright (C) 2003-2004 Manuel Kasper All rights reserved. diff --git a/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/phpDynDNS.inc b/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/phpDynDNS.inc index 6ced5a0cc..d33a8bc7b 100644 --- a/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/phpDynDNS.inc +++ b/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/phpDynDNS.inc @@ -90,7 +90,7 @@ * @version 0.8 * @updated 13 October 05 at 21:02:42 GMT * - * DNSexit/OpenDNS support and multiwan extension for pfSense by Ermal Luci + * DNSexit/OpenDNS support and multiwan extension for pfSense by Ermal Luçi * Custom DNS support by Matt Corallo */ diff --git a/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/r53.inc b/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/r53.inc index 623232223..3eb1e3d99 100644 --- a/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/r53.inc +++ b/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/r53.inc @@ -1,8 +1,8 @@ All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/dns/dyndns/src/www/widgets/widgets/dyn_dns_status.widget.php b/dns/dyndns/src/www/widgets/widgets/dyn_dns_status.widget.php index 5cad1f5bf..82a5775ef 100644 --- a/dns/dyndns/src/www/widgets/widgets/dyn_dns_status.widget.php +++ b/dns/dyndns/src/www/widgets/widgets/dyn_dns_status.widget.php @@ -2,7 +2,7 @@ /* Copyright (C) 2014-2016 Deciso B.V. - Copyright (C) 2008 Ermal Luci + Copyright (C) 2008 Ermal Luçi Copyright (C) 2013 Stanley P. Miller \ stan-qaz All rights reserved. diff --git a/dns/rfc2136/src/etc/inc/plugins.inc.d/rfc2136.inc b/dns/rfc2136/src/etc/inc/plugins.inc.d/rfc2136.inc index ebfd12eb3..b28a2be10 100644 --- a/dns/rfc2136/src/etc/inc/plugins.inc.d/rfc2136.inc +++ b/dns/rfc2136/src/etc/inc/plugins.inc.d/rfc2136.inc @@ -2,7 +2,7 @@ /* Copyright (C) 2014-2017 Franco Fichtner - Copyright (C) 2010 Ermal Luci + Copyright (C) 2010 Ermal Luçi Copyright (C) 2005-2006 Colin Smith Copyright (C) 2003-2004 Manuel Kasper All rights reserved. diff --git a/dns/rfc2136/src/etc/rc.rfc2136 b/dns/rfc2136/src/etc/rc.rfc2136 index e86e4d25a..c536001e3 100755 --- a/dns/rfc2136/src/etc/rc.rfc2136 +++ b/dns/rfc2136/src/etc/rc.rfc2136 @@ -2,7 +2,7 @@ All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/dns/rfc2136/src/www/widgets/widgets/rfc2136.widget.php b/dns/rfc2136/src/www/widgets/widgets/rfc2136.widget.php index ef6962c8b..cd8e1c38c 100644 --- a/dns/rfc2136/src/www/widgets/widgets/rfc2136.widget.php +++ b/dns/rfc2136/src/www/widgets/widgets/rfc2136.widget.php @@ -3,7 +3,7 @@ /* Copyright (C) 2017 Franco Fichtner Copyright (C) 2014-2016 Deciso B.V. - Copyright (C) 2008 Ermal Luci + Copyright (C) 2008 Ermal Luçi Copyright (C) 2013 Stanley P. Miller \ stan-qaz All rights reserved. diff --git a/net-mgmt/snmp/src/etc/inc/plugins.inc.d/bsnmpd.inc b/net-mgmt/snmp/src/etc/inc/plugins.inc.d/bsnmpd.inc index 3aff1e9b6..a448ce834 100644 --- a/net-mgmt/snmp/src/etc/inc/plugins.inc.d/bsnmpd.inc +++ b/net-mgmt/snmp/src/etc/inc/plugins.inc.d/bsnmpd.inc @@ -2,7 +2,7 @@ /* * Copyright (C) 2014-2017 Franco Fichtner - * Copyright (C) 2010 Ermal Luci + * Copyright (C) 2010 Ermal Luçi * Copyright (C) 2005-2006 Colin Smith * Copyright (C) 2003-2004 Manuel Kasper * All rights reserved. diff --git a/net/igmp-proxy/src/etc/inc/plugins.inc.d/igmpproxy.inc b/net/igmp-proxy/src/etc/inc/plugins.inc.d/igmpproxy.inc index ac1ef16f5..64e57626c 100644 --- a/net/igmp-proxy/src/etc/inc/plugins.inc.d/igmpproxy.inc +++ b/net/igmp-proxy/src/etc/inc/plugins.inc.d/igmpproxy.inc @@ -2,7 +2,7 @@ /* * Copyright (C) 2014-2017 Franco Fichtner - * Copyright (C) 2010 Ermal Luci + * Copyright (C) 2010 Ermal Luçi * Copyright (C) 2005-2006 Colin Smith * Copyright (C) 2003-2004 Manuel Kasper * All rights reserved. diff --git a/net/igmp-proxy/src/www/services_igmpproxy.php b/net/igmp-proxy/src/www/services_igmpproxy.php index 0a5fdef5d..9361af38a 100644 --- a/net/igmp-proxy/src/www/services_igmpproxy.php +++ b/net/igmp-proxy/src/www/services_igmpproxy.php @@ -3,7 +3,7 @@ /* Copyright (C) 2014-2016 Deciso B.V. Copyright (C) 2009 Ermal Luçi - Copyright (C) 2004 Scott Ullrich + Copyright (C) 2004 Scott Ullrich Copyright (C) 2003-2004 Manuel Kasper . All rights reserved. diff --git a/net/igmp-proxy/src/www/services_igmpproxy_edit.php b/net/igmp-proxy/src/www/services_igmpproxy_edit.php index 936304a1d..63b90ca9e 100644 --- a/net/igmp-proxy/src/www/services_igmpproxy_edit.php +++ b/net/igmp-proxy/src/www/services_igmpproxy_edit.php @@ -3,7 +3,7 @@ /* Copyright (C) 2014-2016 Deciso B.V. Copyright (C) 2009 Ermal Luçi - Copyright (C) 2004 Scott Ullrich + Copyright (C) 2004 Scott Ullrich Copyright (C) 2003-2004 Manuel Kasper . All rights reserved. diff --git a/net/l2tp/src/etc/inc/plugins.inc.d/if_l2tp.inc b/net/l2tp/src/etc/inc/plugins.inc.d/if_l2tp.inc index 79c662f82..4ffbd5380 100644 --- a/net/l2tp/src/etc/inc/plugins.inc.d/if_l2tp.inc +++ b/net/l2tp/src/etc/inc/plugins.inc.d/if_l2tp.inc @@ -4,7 +4,7 @@ * Coypright (C) 2016-2017 Franco Fichtner * Copyright (C) 2008 Shrew Soft Inc * Copyright (C) 2008 Ermal Luçi - * Copyright (C) 2004 Scott Ullrich + * Copyright (C) 2004 Scott Ullrich * Copyright (C) 2003-2004 Manuel Kasper * All rights reserved. * diff --git a/net/l2tp/src/www/vpn_l2tp.php b/net/l2tp/src/www/vpn_l2tp.php index 7cb56ac44..527891bbd 100644 --- a/net/l2tp/src/www/vpn_l2tp.php +++ b/net/l2tp/src/www/vpn_l2tp.php @@ -2,7 +2,7 @@ /* Copyright (C) 2014-2015 Deciso B.V. - Copyright (C) 2005 Scott Ullrich (sullrich@gmail.com) + Copyright (C) 2005 Scott Ullrich All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/net/l2tp/src/www/vpn_l2tp_users.php b/net/l2tp/src/www/vpn_l2tp_users.php index bde8ccd68..1cc2da829 100644 --- a/net/l2tp/src/www/vpn_l2tp_users.php +++ b/net/l2tp/src/www/vpn_l2tp_users.php @@ -2,7 +2,7 @@ /* Copyright (C) 2014-2016 Deciso B.V. - Copyright (C) 2005 Scott Ullrich (sullrich@gmail.com) + Copyright (C) 2005 Scott Ullrich All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/net/l2tp/src/www/vpn_l2tp_users_edit.php b/net/l2tp/src/www/vpn_l2tp_users_edit.php index a2ce5813b..64dba254a 100644 --- a/net/l2tp/src/www/vpn_l2tp_users_edit.php +++ b/net/l2tp/src/www/vpn_l2tp_users_edit.php @@ -2,7 +2,7 @@ /* Copyright (C) 2014-2016 Deciso B.V. - Copyright (C) 2006 Scott Ullrich (sullrich@gmail.com) + Copyright (C) 2006 Scott Ullrich All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/net/pppoe/src/etc/inc/plugins.inc.d/if_pppoe.inc b/net/pppoe/src/etc/inc/plugins.inc.d/if_pppoe.inc index fda27074d..c508c08b9 100644 --- a/net/pppoe/src/etc/inc/plugins.inc.d/if_pppoe.inc +++ b/net/pppoe/src/etc/inc/plugins.inc.d/if_pppoe.inc @@ -4,7 +4,7 @@ * Coypright (C) 2016-2017 Franco Fichtner * Copyright (C) 2008 Shrew Soft Inc * Copyright (C) 2008 Ermal Luçi - * Copyright (C) 2004 Scott Ullrich + * Copyright (C) 2004 Scott Ullrich * Copyright (C) 2003-2004 Manuel Kasper * All rights reserved. * diff --git a/net/pppoe/src/www/vpn_pppoe.php b/net/pppoe/src/www/vpn_pppoe.php index 02bc17145..dac990ae2 100644 --- a/net/pppoe/src/www/vpn_pppoe.php +++ b/net/pppoe/src/www/vpn_pppoe.php @@ -2,7 +2,7 @@ /* Copyright (C) 2014-2016 Deciso B.V. - Copyright (C) 2010 Ermal Luci + Copyright (C) 2010 Ermal Luçi All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/net/pppoe/src/www/vpn_pppoe_edit.php b/net/pppoe/src/www/vpn_pppoe_edit.php index 994a34fa8..7b685bc77 100644 --- a/net/pppoe/src/www/vpn_pppoe_edit.php +++ b/net/pppoe/src/www/vpn_pppoe_edit.php @@ -2,7 +2,7 @@ /* Copyright (C) 2014-2016 Deciso B.V. - Copyright (C) 2005 Scott Ullrich (sullrich@gmail.com) + Copyright (C) 2005 Scott Ullrich Copyright (C) 2010 Ermal Luçi All rights reserved. diff --git a/net/pptp/src/etc/inc/plugins.inc.d/if_pptp.inc b/net/pptp/src/etc/inc/plugins.inc.d/if_pptp.inc index b503785dd..62d829959 100644 --- a/net/pptp/src/etc/inc/plugins.inc.d/if_pptp.inc +++ b/net/pptp/src/etc/inc/plugins.inc.d/if_pptp.inc @@ -4,7 +4,7 @@ * Coypright (C) 2016-2017 Franco Fichtner * Copyright (C) 2008 Shrew Soft Inc * Copyright (C) 2008 Ermal Luçi - * Copyright (C) 2004 Scott Ullrich + * Copyright (C) 2004 Scott Ullrich * Copyright (C) 2003-2004 Manuel Kasper * All rights reserved. * diff --git a/net/quagga/src/opnsense/mvc/app/controllers/OPNsense/Quagga/Api/Ospf6settingsController.php b/net/quagga/src/opnsense/mvc/app/controllers/OPNsense/Quagga/Api/Ospf6settingsController.php index 08fe7e7d3..5f6a3ea97 100644 --- a/net/quagga/src/opnsense/mvc/app/controllers/OPNsense/Quagga/Api/Ospf6settingsController.php +++ b/net/quagga/src/opnsense/mvc/app/controllers/OPNsense/Quagga/Api/Ospf6settingsController.php @@ -1,10 +1,10 @@ - Copyright (C) 2005-2008 Bill Marquette + Copyright (C) 2005-2008 Bill Marquette All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/net/relayd/src/www/widgets/widgets/load_balancer_status.widget.php b/net/relayd/src/www/widgets/widgets/load_balancer_status.widget.php index 16ff7274a..ae9b3a64a 100644 --- a/net/relayd/src/www/widgets/widgets/load_balancer_status.widget.php +++ b/net/relayd/src/www/widgets/widgets/load_balancer_status.widget.php @@ -2,11 +2,12 @@ /* Copyright (C) 2014 Deciso B.V. - Copyright (C) 2010 Jim Pingle + Copyright (C) 2010 Jim Pingle Copyright (C) 2010 Seth Mos - Copyright (C) 2005-2008 Bill Marquette - Copyright (C) 2004-2005 T. Lechat , Manuel Kasper - and Jonathan Watt . + Copyright (C) 2005-2008 Bill Marquette + Copyright (C) 2004-2005 T. Lechat + Copyright (C) 2004-2005 Manuel Kasper + Copyright (C) 2004-2005 Jonathan Watt All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/security/tinc/src/opnsense/scripts/OPNsense/Tinc/generate_keypair.py b/security/tinc/src/opnsense/scripts/OPNsense/Tinc/generate_keypair.py index 879661ea9..876bdc17e 100755 --- a/security/tinc/src/opnsense/scripts/OPNsense/Tinc/generate_keypair.py +++ b/security/tinc/src/opnsense/scripts/OPNsense/Tinc/generate_keypair.py @@ -1,7 +1,7 @@ #!/usr/local/bin/python2.7 """ - Copyright (c) 2016 Deciso B.V. - Ad Schellevis + Copyright (c) 2016 Ad Schellevis All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/security/tinc/src/opnsense/scripts/OPNsense/Tinc/lib/objects.py b/security/tinc/src/opnsense/scripts/OPNsense/Tinc/lib/objects.py index 98465a5c1..d6b5cdbdf 100644 --- a/security/tinc/src/opnsense/scripts/OPNsense/Tinc/lib/objects.py +++ b/security/tinc/src/opnsense/scripts/OPNsense/Tinc/lib/objects.py @@ -1,5 +1,5 @@ """ - Copyright (c) 2016 Deciso B.V. - Ad Schellevis + Copyright (c) 2016 Ad Schellevis All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/security/tinc/src/opnsense/scripts/OPNsense/Tinc/list_ciphers.py b/security/tinc/src/opnsense/scripts/OPNsense/Tinc/list_ciphers.py index b5755afc4..03c83c6c7 100755 --- a/security/tinc/src/opnsense/scripts/OPNsense/Tinc/list_ciphers.py +++ b/security/tinc/src/opnsense/scripts/OPNsense/Tinc/list_ciphers.py @@ -1,7 +1,7 @@ #!/usr/local/bin/python2.7 """ - Copyright (c) 2016 Deciso B.V. - Ad Schellevis + Copyright (c) 2016 Ad Schellevis All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/security/tinc/src/opnsense/scripts/OPNsense/Tinc/tincd.py b/security/tinc/src/opnsense/scripts/OPNsense/Tinc/tincd.py index 4ef3bca06..2f1a05710 100755 --- a/security/tinc/src/opnsense/scripts/OPNsense/Tinc/tincd.py +++ b/security/tinc/src/opnsense/scripts/OPNsense/Tinc/tincd.py @@ -1,7 +1,7 @@ #!/usr/local/bin/python2.7 """ - Copyright (c) 2016 Deciso B.V. - Ad Schellevis + Copyright (c) 2016 Ad Schellevis All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/sysutils/smart/src/www/diag_smart.php b/sysutils/smart/src/www/diag_smart.php index e6a99d5d4..b43cd2bc6 100644 --- a/sysutils/smart/src/www/diag_smart.php +++ b/sysutils/smart/src/www/diag_smart.php @@ -2,9 +2,9 @@ /* Copyright (C) 2014 Deciso B.V. - Copyright (C) 2010 Jim Pingle + Copyright (C) 2010 Jim Pingle Copyright (C) 2006 Eric Friesen - All rights reserved + All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: