mirror of
https://github.com/opnsense/plugins.git
synced 2026-05-28 04:34:15 -04:00
License: pick up missing, remove vague attribution, sort better
This commit is contained in:
parent
548566b52d
commit
efade39416
4 changed files with 10 additions and 8 deletions
7
LICENSE
7
LICENSE
|
|
@ -1,4 +1,5 @@
|
|||
Copyright (c) 2015-2022 Ad Schellevis <ad@opnsense.org>
|
||||
Copyright (c) 2022 agh1467 <agh1467@protonmail.com>
|
||||
Copyright (c) 2021 Alexander Noack
|
||||
Copyright (c) 2021 Andreas Stuerz
|
||||
Copyright (c) 2021 Axelrtgs
|
||||
|
|
@ -11,10 +12,11 @@ Copyright (c) 2021 David Berry
|
|||
Copyright (c) 2017-2018 David Harrigan
|
||||
Copyright (c) 2021 David Hughes
|
||||
Copyright (c) 2014-2022 Deciso B.V.
|
||||
Copyright (c) 2020 devNan0 <nan0@nan0.dev>
|
||||
Copyright (c) 2008 Donovan Schonknecht
|
||||
Copyright (c) 2016-2019 EURO-LOG AG
|
||||
Copyright (c) 2006 Eric Friesen
|
||||
Copyright (c) 2008-2010 Ermal Luçi
|
||||
Copyright (c) 2016-2019 EURO-LOG AG
|
||||
Copyright (c) 2017-2020 Fabian Franz
|
||||
Copyright (c) 2019 Felix Matouschek <felix@matouschek.org>
|
||||
Copyright (c) 2014-2021 Franco Fichtner <franco@opnsense.org>
|
||||
|
|
@ -36,6 +38,7 @@ Copyright (c) 2022 Markus Reiter <me@reitermark.us>
|
|||
Copyright (c) 2020 Martin Wasley
|
||||
Copyright (c) 2022 Marvo2011
|
||||
Copyright (c) 2017-2021 Michael Muenz <m.muenz@gmail.com>
|
||||
Copyright (c) 2012 mkirbst
|
||||
Copyright (c) 2021 Nicola Pellegrini
|
||||
Copyright (c) 2022 Nikolaj Brinch Jørgensen
|
||||
Copyright (c) 2021 Nim G
|
||||
|
|
@ -50,8 +53,6 @@ Copyright (c) 2020 Tobias Boehnert
|
|||
Copyright (c) 2022 Wouter Deurholt
|
||||
Copyright (c) 2010 Yehuda Katz
|
||||
Copyright (c) 2015 YoungJoo.Kim <vozltx@gmail.com>
|
||||
Copyright (c) 2022 agh1467 <agh1467@protonmail.com>
|
||||
Copyright (c) 2020 devNan0 <nan0@nan0.dev>
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
|
|
|
|||
|
|
@ -113,7 +113,7 @@ sub process_file
|
|||
|
||||
find( \&process_file, $src );
|
||||
|
||||
for ( sort keys %copyrights ) {
|
||||
for ( sort { lc($a) cmp lc($b) } keys %copyrights ) {
|
||||
my $date = $copyrights{$_}[0];
|
||||
next if $date == 0;
|
||||
$date = join '-', @{ $copyrights{$_} } if $copyrights{$_}[1] != $date;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,9 @@
|
|||
#!/usr/local/bin/ruby
|
||||
|
||||
=begin
|
||||
Copyright 2017 Fabian Franz
|
||||
Copyright (c) 2017 Fabian Franz
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification,
|
||||
are permitted provided that the following conditions are met:
|
||||
|
||||
|
|
@ -22,7 +25,6 @@ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|||
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
=end
|
||||
|
||||
|
||||
require 'enumerator'
|
||||
require 'json'
|
||||
require 'optparse'
|
||||
|
|
@ -33,7 +35,6 @@ require 'rexml/document'
|
|||
# global for showing debug output if needed
|
||||
$TOR_DEBUG = false
|
||||
|
||||
|
||||
config = REXML::Document.new(File.new("/conf/config.xml"))
|
||||
$TOR_PASSWORD = config.elements['opnsense/OPNsense/tor/general/control_port_password'].text
|
||||
$TOR_CONTROL_PORT = 9051
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
/*
|
||||
* Copyright (C) 2018 Smart-Soft
|
||||
* Copyright (C) 2014 Deciso B.V.
|
||||
* Copyright 2012 mkirbst @ pfSense Forum
|
||||
* Copyright (C) 2012 mkirbst
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
|
|
|||
Loading…
Reference in a new issue