From 5c3ee1d0686c6e6f2907fe4fc393d86d6c5a69b5 Mon Sep 17 00:00:00 2001 From: Conrad Lara - KG6JEI Date: Sun, 18 Jan 2015 11:36:49 -0800 Subject: [PATCH] bugfix: Add GPLv3 license text to core BBHN Mesh files Program went GPLv3 last year but license text was never added to files Default text to give credit to David as he is listed in all commits and to reference the BBHN Austin team at the same time as they were part of the group of HAM's that started this project. --- CONTRIBUTORS | 2 ++ LICENSE | 17 +++++++++++++++++ files/usr/local/bin/bbhnrecoverymode | 18 ++++++++++++++++++ files/usr/local/bin/connect | 21 +++++++++++++++++++++ files/usr/local/bin/fccid | 20 ++++++++++++++++++++ files/usr/local/bin/firmwarecheck.sh | 2 ++ files/usr/local/bin/fw-debug | 21 +++++++++++++++++++++ files/usr/local/bin/ifstat | 21 +++++++++++++++++++++ files/usr/local/bin/linkled | 18 ++++++++++++++++++ files/usr/local/bin/node-setup | 21 +++++++++++++++++++++ files/usr/local/bin/nvram-setup | 21 +++++++++++++++++++++ files/usr/local/bin/olsrd-config | 21 +++++++++++++++++++++ files/usr/local/bin/olsrd-namechange | 21 +++++++++++++++++++++ files/usr/local/bin/olsrd-watchdog | 19 +++++++++++++++++++ files/usr/local/bin/reflash | 21 +++++++++++++++++++++ files/usr/local/bin/setpasswd | 21 +++++++++++++++++++++ files/usr/local/bin/wifi-onbootchains | 19 +++++++++++++++++++ files/usr/local/bin/wscan | 21 +++++++++++++++++++++ files/www/cgi-bin/admin | 21 +++++++++++++++++++++ files/www/cgi-bin/channelmaps.pm | 19 +++++++++++++++++++ files/www/cgi-bin/fwinfo | 19 +++++++++++++++++++ files/www/cgi-bin/mesh | 21 +++++++++++++++++++++ files/www/cgi-bin/perlfunc.pm | 22 ++++++++++++++++++++++ files/www/cgi-bin/ports | 21 +++++++++++++++++++++ files/www/cgi-bin/scan | 21 +++++++++++++++++++++ files/www/cgi-bin/setup | 21 +++++++++++++++++++++ files/www/cgi-bin/signal | 21 +++++++++++++++++++++ files/www/cgi-bin/status | 21 +++++++++++++++++++++ files/www/cgi-bin/sysinfo | 21 +++++++++++++++++++++ 29 files changed, 553 insertions(+) create mode 100644 CONTRIBUTORS create mode 100644 LICENSE diff --git a/CONTRIBUTORS b/CONTRIBUTORS new file mode 100644 index 00000000..5d72922f --- /dev/null +++ b/CONTRIBUTORS @@ -0,0 +1,2 @@ +David Rivenburg +Conrad Lara - KG6JEI diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..134e2725 --- /dev/null +++ b/LICENSE @@ -0,0 +1,17 @@ +Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks +Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + +Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + +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 version 3 of the License. + +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 . diff --git a/files/usr/local/bin/bbhnrecoverymode b/files/usr/local/bin/bbhnrecoverymode index 05b2ca6e..5a76e0b2 100755 --- a/files/usr/local/bin/bbhnrecoverymode +++ b/files/usr/local/bin/bbhnrecoverymode @@ -1,4 +1,22 @@ #!/bin/sh +<<'LICENSE' + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + 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 version 3 of the License. + + 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 . + +LICENSE DHCPLANSECTION=`uci show dhcp|grep interface=lan|sed "s/dhcp.\@dhcp\[\(.*\)\].interface=lan/\1/"` diff --git a/files/usr/local/bin/connect b/files/usr/local/bin/connect index a165fa48..e7804181 100755 --- a/files/usr/local/bin/connect +++ b/files/usr/local/bin/connect @@ -1,4 +1,25 @@ #!/usr/bin/perl -w +=for commnet + + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +=cut $seq = 0; diff --git a/files/usr/local/bin/fccid b/files/usr/local/bin/fccid index ee08fa19..68c6c654 100755 --- a/files/usr/local/bin/fccid +++ b/files/usr/local/bin/fccid @@ -1,4 +1,24 @@ #!/bin/sh +<<'LICENSE' + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +LICENSE [ -f /etc/config/run-fccid ] || exit diff --git a/files/usr/local/bin/firmwarecheck.sh b/files/usr/local/bin/firmwarecheck.sh index 4f3521cc..1f89c343 100755 --- a/files/usr/local/bin/firmwarecheck.sh +++ b/files/usr/local/bin/firmwarecheck.sh @@ -1,4 +1,6 @@ #!/bin/sh +# Copyright 2014 Conrad Lara + . /etc/functions.sh include /lib/upgrade/ diff --git a/files/usr/local/bin/fw-debug b/files/usr/local/bin/fw-debug index 36cab784..994ab977 100755 --- a/files/usr/local/bin/fw-debug +++ b/files/usr/local/bin/fw-debug @@ -1,4 +1,25 @@ #!/bin/sh +<<'LICENSE' + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +LICENSE + # this script displays the iptables commands that the firewall config file # generates without running them diff --git a/files/usr/local/bin/ifstat b/files/usr/local/bin/ifstat index f3684c70..adf0c7b0 100755 --- a/files/usr/local/bin/ifstat +++ b/files/usr/local/bin/ifstat @@ -1,3 +1,24 @@ #!/bin/sh +<<'LICENSE' + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +LICENSE + ifconfig -a | grep -B1 "inet addr" diff --git a/files/usr/local/bin/linkled b/files/usr/local/bin/linkled index ada2c0fd..654a5a61 100755 --- a/files/usr/local/bin/linkled +++ b/files/usr/local/bin/linkled @@ -1,4 +1,22 @@ #!/bin/sh +<<'LICENSE' + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + 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 version 3 of the License. + + 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 . + +LICENSE { while true; do diff --git a/files/usr/local/bin/node-setup b/files/usr/local/bin/node-setup index 867657a9..dd31218b 100755 --- a/files/usr/local/bin/node-setup +++ b/files/usr/local/bin/node-setup @@ -1,4 +1,25 @@ #!/usr/bin/perl -w -I/www/cgi-bin +=for commnet + + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +=cut use perlfunc; diff --git a/files/usr/local/bin/nvram-setup b/files/usr/local/bin/nvram-setup index 969265f1..16f6e696 100755 --- a/files/usr/local/bin/nvram-setup +++ b/files/usr/local/bin/nvram-setup @@ -1,4 +1,25 @@ #!/usr/bin/perl -w +=for commnet + + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +=cut # do the initial setup of the essential nvram variables # node - node name diff --git a/files/usr/local/bin/olsrd-config b/files/usr/local/bin/olsrd-config index b64c6b3a..a0319a5e 100755 --- a/files/usr/local/bin/olsrd-config +++ b/files/usr/local/bin/olsrd-config @@ -1,4 +1,25 @@ #!/usr/bin/perl -w -I/www/cgi-bin +=for commnet + + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +=cut # this script generates the olsrd config file # static part comes from /etc/config/olsrd.conf diff --git a/files/usr/local/bin/olsrd-namechange b/files/usr/local/bin/olsrd-namechange index 0e2fc08b..d675826a 100755 --- a/files/usr/local/bin/olsrd-namechange +++ b/files/usr/local/bin/olsrd-namechange @@ -1,4 +1,25 @@ #!/usr/bin/perl +=for commnet + + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +=cut # do nothing if olsrd is not running exit if system "ps | grep -v grep | grep -q 'olsrd '"; diff --git a/files/usr/local/bin/olsrd-watchdog b/files/usr/local/bin/olsrd-watchdog index 167ae2bc..18d8f308 100755 --- a/files/usr/local/bin/olsrd-watchdog +++ b/files/usr/local/bin/olsrd-watchdog @@ -1,4 +1,23 @@ #!/bin/sh +<<'LICENSE' + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + 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 version 3 of the License. + + 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 . + +LICENSE + # wait for the watchdog file to appear before starting while [ ! -f "/tmp/olsrd.watchdog" ] diff --git a/files/usr/local/bin/reflash b/files/usr/local/bin/reflash index 2e542258..29cb054b 100755 --- a/files/usr/local/bin/reflash +++ b/files/usr/local/bin/reflash @@ -1,4 +1,25 @@ #!/bin/sh +<<'LICENSE' + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +LICENSE + N=`ls /tmp/*.trx 2>/dev/null | wc -l` diff --git a/files/usr/local/bin/setpasswd b/files/usr/local/bin/setpasswd index ba10b1b7..f52debbc 100755 --- a/files/usr/local/bin/setpasswd +++ b/files/usr/local/bin/setpasswd @@ -1,4 +1,25 @@ #!/usr/bin/perl -w +=for commnet + + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +=cut unless(defined ($pw = shift)) { diff --git a/files/usr/local/bin/wifi-onbootchains b/files/usr/local/bin/wifi-onbootchains index facbba79..b40b0fe6 100755 --- a/files/usr/local/bin/wifi-onbootchains +++ b/files/usr/local/bin/wifi-onbootchains @@ -1,4 +1,23 @@ #!/usr/bin/perl -w -I/www/cgi-bin +=for commnet + + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + 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 version 3 of the License. + + 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 . + +=cut use perlfunc; diff --git a/files/usr/local/bin/wscan b/files/usr/local/bin/wscan index 51e11136..b96f7459 100755 --- a/files/usr/local/bin/wscan +++ b/files/usr/local/bin/wscan @@ -1,4 +1,25 @@ #!/usr/bin/perl -w +=for commnet + + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +=cut sub usage { diff --git a/files/www/cgi-bin/admin b/files/www/cgi-bin/admin index 042ea981..b48fc067 100755 --- a/files/www/cgi-bin/admin +++ b/files/www/cgi-bin/admin @@ -1,4 +1,25 @@ #!/usr/bin/perl +=for commnet + + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +=cut BEGIN {push @INC, '/www/cgi-bin'}; use perlfunc; diff --git a/files/www/cgi-bin/channelmaps.pm b/files/www/cgi-bin/channelmaps.pm index 2bb6004e..4f4c40ce 100644 --- a/files/www/cgi-bin/channelmaps.pm +++ b/files/www/cgi-bin/channelmaps.pm @@ -1,3 +1,22 @@ +=for commnet + + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + 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 version 3 of the License. + + 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 . + +=cut use perlfunc; diff --git a/files/www/cgi-bin/fwinfo b/files/www/cgi-bin/fwinfo index befd022c..0fb67194 100755 --- a/files/www/cgi-bin/fwinfo +++ b/files/www/cgi-bin/fwinfo @@ -1,4 +1,23 @@ #!/usr/bin/perl +=for commnet + + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + 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 version 3 of the License. + + 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 . + +=cut print "Content-type:text\r\n\r\n"; diff --git a/files/www/cgi-bin/mesh b/files/www/cgi-bin/mesh index 4fbcc0cd..4cdebd91 100755 --- a/files/www/cgi-bin/mesh +++ b/files/www/cgi-bin/mesh @@ -1,4 +1,25 @@ #!/usr/bin/perl +=for commnet + + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +=cut $debug = 0; diff --git a/files/www/cgi-bin/perlfunc.pm b/files/www/cgi-bin/perlfunc.pm index da590cd1..e65e56f7 100644 --- a/files/www/cgi-bin/perlfunc.pm +++ b/files/www/cgi-bin/perlfunc.pm @@ -1,3 +1,25 @@ +=for commnet + + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +=cut + ########################## # html functions diff --git a/files/www/cgi-bin/ports b/files/www/cgi-bin/ports index 91ee5113..ad9192c8 100755 --- a/files/www/cgi-bin/ports +++ b/files/www/cgi-bin/ports @@ -1,4 +1,25 @@ #!/usr/bin/perl +=for commnet + + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +=cut $debug = 0; diff --git a/files/www/cgi-bin/scan b/files/www/cgi-bin/scan index 00245802..d4a6ab2b 100755 --- a/files/www/cgi-bin/scan +++ b/files/www/cgi-bin/scan @@ -1,4 +1,25 @@ #!/usr/bin/perl +=for commnet + + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +=cut $debug = 0; diff --git a/files/www/cgi-bin/setup b/files/www/cgi-bin/setup index 1eeb2e36..f10b5ec2 100755 --- a/files/www/cgi-bin/setup +++ b/files/www/cgi-bin/setup @@ -1,4 +1,25 @@ #!/usr/bin/perl +=for commnet + + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +=cut $debug = 0; diff --git a/files/www/cgi-bin/signal b/files/www/cgi-bin/signal index 6ac6e0af..e8acc109 100755 --- a/files/www/cgi-bin/signal +++ b/files/www/cgi-bin/signal @@ -1,4 +1,25 @@ #!/usr/bin/perl +=for commnet + + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +=cut $debug = 0; diff --git a/files/www/cgi-bin/status b/files/www/cgi-bin/status index 27853b23..a0c665bc 100755 --- a/files/www/cgi-bin/status +++ b/files/www/cgi-bin/status @@ -1,4 +1,25 @@ #!/usr/bin/perl +=for commnet + + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +=cut $debug = 0; BEGIN {push @INC, '/www/cgi-bin'}; diff --git a/files/www/cgi-bin/sysinfo b/files/www/cgi-bin/sysinfo index a36b9537..84f9130f 100755 --- a/files/www/cgi-bin/sysinfo +++ b/files/www/cgi-bin/sysinfo @@ -1,4 +1,25 @@ #!/usr/bin/perl +=for commnet + + Part of BBHN Mesh -- Used for creating Amateur Radio friendly mesh networks + Copyright (C) 2015 Conrad Lara + See Contributors file for additional contributors + + Copyright (c) 2013 David Rivenburg et al. BroadBand-HamNet + + 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 version 3 of the License. + + 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 . + +=cut BEGIN {push @INC, '/www/cgi-bin'}; use perlfunc;