summaryrefslogtreecommitdiffstats
path: root/src/software
diff options
context:
space:
mode:
Diffstat (limited to 'src/software')
-rwxr-xr-xsrc/software/cli/software.py2
-rw-r--r--src/software/openlmi/__init__.py2
-rw-r--r--src/software/openlmi/software/LMI_SoftwareFileCheck.py2
-rw-r--r--src/software/openlmi/software/LMI_SoftwareInstalledPackage.py2
-rw-r--r--src/software/openlmi/software/LMI_SoftwarePackage.py2
-rw-r--r--src/software/openlmi/software/LMI_SoftwarePackageChecks.py2
-rw-r--r--src/software/openlmi/software/__init__.py2
-rw-r--r--src/software/openlmi/software/cimom_entry.py2
-rw-r--r--src/software/openlmi/software/core/ComputerSystem.py2
-rw-r--r--src/software/openlmi/software/core/SoftwareFileCheck.py2
-rw-r--r--src/software/openlmi/software/core/SoftwareInstalledPackage.py2
-rw-r--r--src/software/openlmi/software/core/SoftwarePackage.py2
-rw-r--r--src/software/openlmi/software/core/SoftwarePackageChecks.py2
-rw-r--r--src/software/openlmi/software/core/__init__.py2
-rw-r--r--src/software/openlmi/software/util/__init__.py2
-rw-r--r--src/software/openlmi/software/yumdb/__init__.py2
-rw-r--r--src/software/openlmi/software/yumdb/errors.py2
-rw-r--r--src/software/openlmi/software/yumdb/jobs.py2
-rw-r--r--src/software/openlmi/software/yumdb/packagecheck.py2
-rw-r--r--src/software/openlmi/software/yumdb/packageinfo.py2
-rw-r--r--src/software/openlmi/software/yumdb/process.py2
-rw-r--r--src/software/test/common.py2
-rw-r--r--src/software/test/rpmcache.py2
-rwxr-xr-xsrc/software/test/run.py2
-rwxr-xr-xsrc/software/test/test_software_file_check.py2
-rwxr-xr-xsrc/software/test/test_software_installed_package.py2
-rwxr-xr-xsrc/software/test/test_software_package.py2
27 files changed, 27 insertions, 27 deletions
diff --git a/src/software/cli/software.py b/src/software/cli/software.py
index 5368e5f..c92a12d 100755
--- a/src/software/cli/software.py
+++ b/src/software/cli/software.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/openlmi/__init__.py b/src/software/openlmi/__init__.py
index 085d611..aa4170a 100644
--- a/src/software/openlmi/__init__.py
+++ b/src/software/openlmi/__init__.py
@@ -1,6 +1,6 @@
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/openlmi/software/LMI_SoftwareFileCheck.py b/src/software/openlmi/software/LMI_SoftwareFileCheck.py
index 58470bb..b3a767d 100644
--- a/src/software/openlmi/software/LMI_SoftwareFileCheck.py
+++ b/src/software/openlmi/software/LMI_SoftwareFileCheck.py
@@ -1,6 +1,6 @@
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/openlmi/software/LMI_SoftwareInstalledPackage.py b/src/software/openlmi/software/LMI_SoftwareInstalledPackage.py
index 4206a46..22d214b 100644
--- a/src/software/openlmi/software/LMI_SoftwareInstalledPackage.py
+++ b/src/software/openlmi/software/LMI_SoftwareInstalledPackage.py
@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/openlmi/software/LMI_SoftwarePackage.py b/src/software/openlmi/software/LMI_SoftwarePackage.py
index 17483e8..c2f9d3a 100644
--- a/src/software/openlmi/software/LMI_SoftwarePackage.py
+++ b/src/software/openlmi/software/LMI_SoftwarePackage.py
@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/openlmi/software/LMI_SoftwarePackageChecks.py b/src/software/openlmi/software/LMI_SoftwarePackageChecks.py
index 48faabc..5b898d4 100644
--- a/src/software/openlmi/software/LMI_SoftwarePackageChecks.py
+++ b/src/software/openlmi/software/LMI_SoftwarePackageChecks.py
@@ -1,6 +1,6 @@
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/openlmi/software/__init__.py b/src/software/openlmi/software/__init__.py
index 2ebe827..6ff965f 100644
--- a/src/software/openlmi/software/__init__.py
+++ b/src/software/openlmi/software/__init__.py
@@ -1,6 +1,6 @@
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/openlmi/software/cimom_entry.py b/src/software/openlmi/software/cimom_entry.py
index 9e6e10c..19bd57d 100644
--- a/src/software/openlmi/software/cimom_entry.py
+++ b/src/software/openlmi/software/cimom_entry.py
@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/openlmi/software/core/ComputerSystem.py b/src/software/openlmi/software/core/ComputerSystem.py
index 90699a0..4b83d8f 100644
--- a/src/software/openlmi/software/core/ComputerSystem.py
+++ b/src/software/openlmi/software/core/ComputerSystem.py
@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# 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
diff --git a/src/software/openlmi/software/core/SoftwareFileCheck.py b/src/software/openlmi/software/core/SoftwareFileCheck.py
index 409db09..f63e510 100644
--- a/src/software/openlmi/software/core/SoftwareFileCheck.py
+++ b/src/software/openlmi/software/core/SoftwareFileCheck.py
@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/openlmi/software/core/SoftwareInstalledPackage.py b/src/software/openlmi/software/core/SoftwareInstalledPackage.py
index f91fb56..43572a9 100644
--- a/src/software/openlmi/software/core/SoftwareInstalledPackage.py
+++ b/src/software/openlmi/software/core/SoftwareInstalledPackage.py
@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/openlmi/software/core/SoftwarePackage.py b/src/software/openlmi/software/core/SoftwarePackage.py
index 0ef0d31..de652ac 100644
--- a/src/software/openlmi/software/core/SoftwarePackage.py
+++ b/src/software/openlmi/software/core/SoftwarePackage.py
@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/openlmi/software/core/SoftwarePackageChecks.py b/src/software/openlmi/software/core/SoftwarePackageChecks.py
index 6d39294..3b49128 100644
--- a/src/software/openlmi/software/core/SoftwarePackageChecks.py
+++ b/src/software/openlmi/software/core/SoftwarePackageChecks.py
@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/openlmi/software/core/__init__.py b/src/software/openlmi/software/core/__init__.py
index 2ebe827..6ff965f 100644
--- a/src/software/openlmi/software/core/__init__.py
+++ b/src/software/openlmi/software/core/__init__.py
@@ -1,6 +1,6 @@
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/openlmi/software/util/__init__.py b/src/software/openlmi/software/util/__init__.py
index e48ea29..3392b1c 100644
--- a/src/software/openlmi/software/util/__init__.py
+++ b/src/software/openlmi/software/util/__init__.py
@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/openlmi/software/yumdb/__init__.py b/src/software/openlmi/software/yumdb/__init__.py
index 0dc9050..d52b469 100644
--- a/src/software/openlmi/software/yumdb/__init__.py
+++ b/src/software/openlmi/software/yumdb/__init__.py
@@ -1,6 +1,6 @@
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/openlmi/software/yumdb/errors.py b/src/software/openlmi/software/yumdb/errors.py
index 646048e..ae18608 100644
--- a/src/software/openlmi/software/yumdb/errors.py
+++ b/src/software/openlmi/software/yumdb/errors.py
@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/openlmi/software/yumdb/jobs.py b/src/software/openlmi/software/yumdb/jobs.py
index 1fdfbe3..28f4ca3 100644
--- a/src/software/openlmi/software/yumdb/jobs.py
+++ b/src/software/openlmi/software/yumdb/jobs.py
@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/openlmi/software/yumdb/packagecheck.py b/src/software/openlmi/software/yumdb/packagecheck.py
index fbb5b21..3b49164 100644
--- a/src/software/openlmi/software/yumdb/packagecheck.py
+++ b/src/software/openlmi/software/yumdb/packagecheck.py
@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/openlmi/software/yumdb/packageinfo.py b/src/software/openlmi/software/yumdb/packageinfo.py
index b2cd2b8..dd23ac3 100644
--- a/src/software/openlmi/software/yumdb/packageinfo.py
+++ b/src/software/openlmi/software/yumdb/packageinfo.py
@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/openlmi/software/yumdb/process.py b/src/software/openlmi/software/yumdb/process.py
index c247de7..9c30a29 100644
--- a/src/software/openlmi/software/yumdb/process.py
+++ b/src/software/openlmi/software/yumdb/process.py
@@ -1,7 +1,7 @@
# -*- encoding: utf-8 -*-
# Software Management Providers
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/test/common.py b/src/software/test/common.py
index d91f236..fbcb5d4 100644
--- a/src/software/test/common.py
+++ b/src/software/test/common.py
@@ -1,5 +1,5 @@
# -*- encoding: utf-8 -*-
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/test/rpmcache.py b/src/software/test/rpmcache.py
index 9a0e98a..e1f15d9 100644
--- a/src/software/test/rpmcache.py
+++ b/src/software/test/rpmcache.py
@@ -1,7 +1,7 @@
#!/usr/bin/python
# -*- Coding:utf-8 -*-
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/test/run.py b/src/software/test/run.py
index 950b0c9..e58945c 100755
--- a/src/software/test/run.py
+++ b/src/software/test/run.py
@@ -1,7 +1,7 @@
#!/usr/bin/python
# -*- Coding:utf-8 -*-
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/test/test_software_file_check.py b/src/software/test/test_software_file_check.py
index 7b97ee9..d41f052 100755
--- a/src/software/test/test_software_file_check.py
+++ b/src/software/test/test_software_file_check.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/test/test_software_installed_package.py b/src/software/test/test_software_installed_package.py
index 93669f9..c66a941 100755
--- a/src/software/test/test_software_installed_package.py
+++ b/src/software/test/test_software_installed_package.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
diff --git a/src/software/test/test_software_package.py b/src/software/test/test_software_package.py
index 4cd5da9..b619da7 100755
--- a/src/software/test/test_software_package.py
+++ b/src/software/test/test_software_package.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2012-2013 Red Hat, Inc. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public