Skip to content

Commit 6a71ce4

Browse files
committed
header cleanup
1 parent 0a6aa1a commit 6a71ce4

13 files changed

+0
-73
lines changed

LICENSE

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014 Fluent Trade Technologies
4-
53
Permission is hereby granted, free of charge, to any person obtaining a copy
64
of this software and associated documentation files (the "Software"), to deal
75
in the Software without restriction, including without limitation the rights

NOTICE

-7
This file was deleted.

README

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
Netconfigit is released under the MIT license except as otherwise noted.
22

3-
Netconfigit is developed and maintained by Fluent Trade Technologies.
4-
5-
63
Netconfigit is an extensible tool for performing configuration backups on a wide range of network devices. Configurations are pulled from devices through several available methods and committed to a GIT repository. Netconfigit reads an XML configuration file which describes among other things, the GIT repository, the network devices and their access credentials, and the actions to be performed on each device.
74

85

main.py

-7
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,8 @@
33
Netconfigit
44
55
Network device configuration archive tool
6-
Copyright (C) 2014 Fluent Trade Technologies
76
"""
87

9-
__license__ = "MIT License"
10-
__author__ = "Eric Griffin"
11-
__copyright__ = "Copyright (C) 2014, Fluent Trade Technologies"
12-
__version__ = "1.1"
13-
14-
158
import sys
169
import os.path
1710
import signal

modules/aescrypt.py

-6
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,6 @@
55
Encrypts and decrypts data with AES encryption
66
"""
77

8-
__license__ = "MIT License"
9-
__author__ = "Eric Griffin"
10-
__copyright__ = "Copyright (C) 2014, Fluent Trade Technologies"
11-
__version__ = "1.1"
12-
13-
148
import os
159
import base64
1610
from Crypto.Cipher import AES

modules/devices/arista.py

-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@
33
Netconfigit Arista device class
44
"""
55

6-
__license__ = "MIT License"
7-
__author__ = "Eric Griffin"
8-
__copyright__ = "Copyright (C) 2014, Fluent Trade Technologies"
9-
__version__ = "1.1"
10-
11-
126
import logging
137
import os
148
import re

modules/devices/cisco.py

-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@
33
Netconfigit Cisco device class
44
"""
55

6-
__license__ = "MIT License"
7-
__author__ = "Eric Griffin"
8-
__copyright__ = "Copyright (C) 2014, Fluent Trade Technologies"
9-
__version__ = "1.1"
10-
11-
126
import logging
137
import os
148
import time

modules/devices/dell.py

-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@
33
Netconfigit Dell device class
44
"""
55

6-
__license__ = "MIT License"
7-
__author__ = "Eric Griffin"
8-
__copyright__ = "Copyright (C) 2014, Fluent Trade Technologies"
9-
__version__ = "1.1"
10-
11-
126
import logging
137
import os
148
import time

modules/devices/fortinet.py

-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@
33
Netconfigit Fortinet device class
44
"""
55

6-
__license__ = "MIT License"
7-
__author__ = "Eric Griffin"
8-
__copyright__ = "Copyright (C) 2014, Fluent Trade Technologies"
9-
__version__ = "1.1"
10-
11-
126
import logging
137
import os
148
import time

modules/devices/h3c.py

-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@
33
Netconfigit H3C device class
44
"""
55

6-
__license__ = "MIT License"
7-
__author__ = "Eric Griffin"
8-
__copyright__ = "Copyright (C) 2014, Fluent Trade Technologies"
9-
__version__ = "1.1"
10-
11-
126
import logging
137
import os
148
import time

modules/devices/solace.py

-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@
33
Netconfigit Solace device class
44
"""
55

6-
__license__ = "MIT License"
7-
__author__ = "Eric Griffin"
8-
__copyright__ = "Copyright (C) 2014, Fluent Trade Technologies"
9-
__version__ = "1.1"
10-
11-
126
import logging
137
import os
148
import time

modules/netconfigit.py

-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@
33
Netconfigit and NetworkDevice classes
44
"""
55

6-
__license__ = "MIT License"
7-
__author__ = "Eric Griffin"
8-
__copyright__ = "Copyright (C) 2014, Fluent Trade Technologies"
9-
__version__ = "1.1"
10-
11-
126
import os
137
import sys
148
import time

modules/threadpool.py

-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@
33
ThreadPool and Worker classes
44
"""
55

6-
__license__ = "MIT License"
7-
__author__ = "Eric Griffin"
8-
__copyright__ = "Copyright (C) 2014, Fluent Trade Technologies"
9-
__version__ = "1.1"
10-
11-
126
from Queue import Queue
137
from threading import Thread
148

0 commit comments

Comments
 (0)