Skip to content

Commit 5062a0d

Browse files
authored
fix: Copyright placement and scripts (#26)
* Update: README copyright placement * Update: script execution placement Signed-off-by: Garrick He <[email protected]>
1 parent 7075f25 commit 5062a0d

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
© 2018 OpenSwitch project. All information is contributed to and made available by OPX under the Creative Commons Attribution 4.0 International License (available at http://creativecommons.org/licenses/by/4.0/).
2-
31
# opx-nas-acl
42
This repository contains the access control list (ACL) component of the network abstraction service (NAS). It provides a programmable interface to configure system flow entries, and data plane packet filters to the network processor unit (NPU).
53

@@ -10,4 +8,4 @@ This repository contains the access control list (ACL) component of the network
108

119
See [Architecture](https://github.com/open-switch/opx-docs/wiki/Architecture) for more information on the NAS ACL module.
1210

13-
(c) 2017 Dell EMC
11+
© 2018 OpenSwitch project. All information is contributed to and made available by OPX under the Creative Commons Attribution 4.0 International License (available at http://creativecommons.org/licenses/by/4.0/).

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# Process this file with autoconf to produce a configure script.
1717

1818
AC_PREREQ([2.69])
19-
AC_INIT([opx-nas-acl], [2.8.0+opx1], [[email protected]])
19+
AC_INIT([opx-nas-acl], [2.8.0+opx2], [[email protected]])
2020
AM_INIT_AUTOMAKE([foreign subdir-objects])
2121
AC_CONFIG_SRCDIR([.])
2222
AC_CONFIG_HEADERS([config.h])

debian/changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
opx-nas-acl (2.8.0+opx2) unstable; urgency=medium
2+
3+
* Update: README copyright placement
4+
* Update: script execution placement
5+
6+
-- Dell EMC <[email protected]> Tue, 11 Dec 2018 11:36:00 -0800
7+
18
opx-nas-acl (2.8.0+opx1) unstable; urgency=medium
29

310
* Update: Copyright information

scripts/bin/acl-loader

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/python
2+
#
13
# Copyright (c) 2018 Dell Inc.
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License"); you may
@@ -12,7 +14,6 @@
1214
# See the Apache Version 2.0 License for specific language governing
1315
# permissions and limitations under the License.
1416
#
15-
#!/usr/bin/python
1617

1718
import cps
1819
import cps_utils

scripts/bin/base_acl_cli.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/python
2+
#
13
# Copyright (c) 2018 Dell Inc.
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License"); you may
@@ -12,7 +14,6 @@
1214
# See the Apache Version 2.0 License for specific language governing
1315
# permissions and limitations under the License.
1416
#
15-
#!/usr/bin/python
1617

1718
import nas_acl
1819
import argparse

0 commit comments

Comments
 (0)