Skip to content

Commit ac24dc2

Browse files
committedJul 14, 2016
Review license / copyright on all files (1st round)
1 parent 30b9499 commit ac24dc2

File tree

243 files changed

+12304
-5700
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

243 files changed

+12304
-5700
lines changed
 

‎build.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
#
33
# build.sh
44
#
5-
# Copyright (c) 2004-2015 Electric Sheep Fencing, LLC. All rights reserved.
5+
# part of pfSense (https://www.pfsense.org)
6+
# Copyright (c) 2004-2016 Electric Sheep Fencing, LLC
7+
# All rights reserved.
68
#
79
# Redistribution and use in source and binary forms, with or without
810
# modification, are permitted provided that the following conditions are met:
@@ -47,7 +49,6 @@
4749
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
4850
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
4951
# OF THE POSSIBILITY OF SUCH DAMAGE.
50-
#
5152

5253
set +e
5354
usage() {

‎src/etc/ecl.php

+48-29
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,53 @@
11
<?php
22
/*
3-
external config loader
4-
Copyright (C) 2010 Scott Ullrich
5-
Copyright (C) 2013-2015 Electric Sheep Fencing, LP
6-
All rights reserved.
7-
8-
Redistribution and use in source and binary forms, with or without
9-
modification, are permitted provided that the following conditions are met:
10-
11-
1. Redistributions of source code must retain the above copyright notice,
12-
this list of conditions and the following disclaimer.
13-
14-
2. Redistributions in binary form must reproduce the above copyright
15-
notice, this list of conditions and the following disclaimer in the
16-
documentation and/or other materials provided with the distribution.
17-
18-
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
19-
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
20-
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21-
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
22-
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23-
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24-
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25-
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26-
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27-
POSSIBILITY OF SUCH DAMAGE.
28-
29-
Currently supported file system types: MS-Dos, FreeBSD UFS
30-
31-
*/
3+
* ecl.php
4+
*
5+
* Copyright (c) 2010-2015 Electric Sheep Fencing, LLC. All rights reserved.
6+
*
7+
* Redistribution and use in source and binary forms, with or without
8+
* modification, are permitted provided that the following conditions are met:
9+
*
10+
* 1. Redistributions of source code must retain the above copyright notice,
11+
* this list of conditions and the following disclaimer.
12+
*
13+
* 2. Redistributions in binary form must reproduce the above copyright
14+
* notice, this list of conditions and the following disclaimer in
15+
* the documentation and/or other materials provided with the
16+
* distribution.
17+
*
18+
* 3. All advertising materials mentioning features or use of this software
19+
* must display the following acknowledgment:
20+
* "This product includes software developed by the pfSense Project
21+
* for use in the pfSense® software distribution. (http://www.pfsense.org/).
22+
*
23+
* 4. The names "pfSense" and "pfSense Project" must not be used to
24+
* endorse or promote products derived from this software without
25+
* prior written permission. For written permission, please contact
26+
* coreteam@pfsense.org.
27+
*
28+
* 5. Products derived from this software may not be called "pfSense"
29+
* nor may "pfSense" appear in their names without prior written
30+
* permission of the Electric Sheep Fencing, LLC.
31+
*
32+
* 6. Redistributions of any form whatsoever must retain the following
33+
* acknowledgment:
34+
*
35+
* "This product includes software developed by the pfSense Project
36+
* for use in the pfSense software distribution (http://www.pfsense.org/).
37+
*
38+
* THIS SOFTWARE IS PROVIDED BY THE pfSense PROJECT ``AS IS'' AND ANY
39+
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
40+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
41+
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE pfSense PROJECT OR
42+
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
43+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
44+
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
45+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
46+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
47+
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
48+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
49+
* OF THE POSSIBILITY OF SUCH DAMAGE.
50+
*/
3251

3352
require_once("globals.inc");
3453
require_once("functions.inc");

0 commit comments

Comments
 (0)
Please sign in to comment.