Skip to content

Commit

Permalink
ADDED license header to all source files, fixing #19
Browse files Browse the repository at this point in the history
  • Loading branch information
masc3d committed Nov 8, 2015
1 parent b655875 commit e52577e
Show file tree
Hide file tree
Showing 10 changed files with 70 additions and 2 deletions.
9 changes: 7 additions & 2 deletions btrfs_sxbackup/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# Copyright (c) 2014 Marco Schindler
#
# 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; either version 2 of the License, or (at your option)
# any later version.

__version__ = '0.5.8'
__author__ = 'Marco Schindler'
__email__ = 'masc@disappear.de'
__maintainer__ = 'masc@disappear.de'
__license__ = 'GPL'
__copyright__ = 'Copyright 2014, Marco Schindler'


7 changes: 7 additions & 0 deletions btrfs_sxbackup/__main__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Copyright (c) 2014 Marco Schindler
#
# 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; either version 2 of the License, or (at your option)
# any later version.

import logging
import logging.handlers
import sys
Expand Down
7 changes: 7 additions & 0 deletions btrfs_sxbackup/core.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Copyright (c) 2014 Marco Schindler
#
# 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; either version 2 of the License, or (at your option)
# any later version.

import collections
import logging
import subprocess
Expand Down
7 changes: 7 additions & 0 deletions btrfs_sxbackup/entities.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Copyright (c) 2014 Marco Schindler
#
# 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; either version 2 of the License, or (at your option)
# any later version.

import re

from datetime import datetime
Expand Down
7 changes: 7 additions & 0 deletions btrfs_sxbackup/mail.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Copyright (c) 2014 Marco Schindler
#
# 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; either version 2 of the License, or (at your option)
# any later version.

import socket
import subprocess
from email.mime.text import MIMEText
Expand Down
7 changes: 7 additions & 0 deletions btrfs_sxbackup/retention.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Copyright (c) 2014 Marco Schindler
#
# 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; either version 2 of the License, or (at your option)
# any later version.

import collections
import logging
import math
Expand Down
7 changes: 7 additions & 0 deletions btrfs_sxbackup/shell.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Copyright (c) 2014 Marco Schindler
#
# 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; either version 2 of the License, or (at your option)
# any later version.

import subprocess
import logging

Expand Down
7 changes: 7 additions & 0 deletions btrfs_sxbackup/tests/TestKeepExpression.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Copyright (c) 2014 Marco Schindler
#
# 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; either version 2 of the License, or (at your option)
# any later version.

import logging
import unittest
import sys
Expand Down
7 changes: 7 additions & 0 deletions btrfs_sxbackup/tests/TestSnapshotName.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Copyright (c) 2014 Marco Schindler
#
# 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; either version 2 of the License, or (at your option)
# any later version.

import unittest

from btrfs_sxbackup.entities import SnapshotName
Expand Down
7 changes: 7 additions & 0 deletions btrfs_sxbackup/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
# Copyright (c) 2014 Marco Schindler
#
# 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; either version 2 of the License, or (at your option)
# any later version.

__author__ = 'masc3d'

0 comments on commit e52577e

Please sign in to comment.