From 286dc61dd2a8b621086faf14fb18dbeca5888a11 Mon Sep 17 00:00:00 2001 From: Justin Riley Date: Fri, 25 Apr 2014 18:48:40 -0400 Subject: [PATCH] bump year in license header on all source files --- setup.py | 2 +- starcluster/__init__.py | 2 +- starcluster/awsutils.py | 2 +- starcluster/balancers/__init__.py | 2 +- starcluster/balancers/sge/__init__.py | 2 +- starcluster/balancers/sge/visualizer.py | 2 +- starcluster/cli.py | 2 +- starcluster/cluster.py | 2 +- starcluster/clustersetup.py | 2 +- starcluster/commands/__init__.py | 2 +- starcluster/commands/addnode.py | 2 +- starcluster/commands/base.py | 2 +- starcluster/commands/completers.py | 2 +- starcluster/commands/createkey.py | 2 +- starcluster/commands/createvolume.py | 2 +- starcluster/commands/downloadimage.py | 2 +- starcluster/commands/ebsimage.py | 2 +- starcluster/commands/get.py | 2 +- starcluster/commands/help.py | 2 +- starcluster/commands/listbuckets.py | 2 +- starcluster/commands/listclusters.py | 2 +- starcluster/commands/listimages.py | 2 +- starcluster/commands/listinstances.py | 2 +- starcluster/commands/listkeypairs.py | 2 +- starcluster/commands/listpublic.py | 2 +- starcluster/commands/listregions.py | 2 +- starcluster/commands/listspots.py | 2 +- starcluster/commands/listvolumes.py | 2 +- starcluster/commands/listzones.py | 2 +- starcluster/commands/loadbalance.py | 2 +- starcluster/commands/put.py | 2 +- starcluster/commands/removeimage.py | 2 +- starcluster/commands/removekey.py | 2 +- starcluster/commands/removenode.py | 2 +- starcluster/commands/removevolume.py | 2 +- starcluster/commands/resizevolume.py | 2 +- starcluster/commands/restart.py | 2 +- starcluster/commands/runplugin.py | 2 +- starcluster/commands/s3image.py | 2 +- starcluster/commands/shell.py | 2 +- starcluster/commands/showbucket.py | 2 +- starcluster/commands/showconsole.py | 2 +- starcluster/commands/showimage.py | 2 +- starcluster/commands/spothistory.py | 2 +- starcluster/commands/sshinstance.py | 2 +- starcluster/commands/sshmaster.py | 2 +- starcluster/commands/sshnode.py | 2 +- starcluster/commands/start.py | 2 +- starcluster/commands/stop.py | 2 +- starcluster/commands/terminate.py | 2 +- starcluster/completion.py | 2 +- starcluster/config.py | 2 +- starcluster/deathrow.py | 2 +- starcluster/exception.py | 2 +- starcluster/image.py | 2 +- starcluster/logger.py | 2 +- starcluster/managers.py | 2 +- starcluster/node.py | 2 +- starcluster/plugins/__init__.py | 2 +- starcluster/plugins/boto.py | 2 +- starcluster/plugins/condor.py | 2 +- starcluster/plugins/hadoop.py | 2 +- starcluster/plugins/ipcluster.py | 2 +- starcluster/plugins/mpich2.py | 2 +- starcluster/plugins/mysql.py | 2 +- starcluster/plugins/pkginstaller.py | 2 +- starcluster/plugins/pypkginstaller.py | 2 +- starcluster/plugins/sge.py | 2 +- starcluster/plugins/tmux.py | 2 +- starcluster/plugins/users.py | 2 +- starcluster/plugins/xvfb.py | 2 +- starcluster/spinner.py | 2 +- starcluster/sshutils.py | 2 +- starcluster/static.py | 2 +- starcluster/templates/__init__.py | 2 +- starcluster/templates/condor.py | 2 +- starcluster/templates/config.py | 2 +- starcluster/templates/sge.py | 2 +- starcluster/templates/user_msgs.py | 2 +- starcluster/tests/__init__.py | 2 +- starcluster/tests/conftest.py | 17 +++++++++++++++++ starcluster/tests/mytestplugin.py | 2 +- starcluster/tests/templates/__init__.py | 2 +- starcluster/tests/templates/config.py | 2 +- starcluster/tests/templates/sge_balancer.py | 2 +- starcluster/tests/test_cluster_validation.py | 2 +- starcluster/tests/test_config.py | 2 +- starcluster/tests/test_live.py | 17 +++++++++++++++++ starcluster/tests/test_sge_balancer.py | 2 +- starcluster/tests/test_threadpool.py | 2 +- starcluster/tests/test_userdata_utils.py | 2 +- starcluster/threadpool.py | 2 +- starcluster/userdata.py | 2 +- starcluster/utils.py | 2 +- starcluster/validators.py | 2 +- starcluster/volume.py | 2 +- starcluster/webtools.py | 2 +- 97 files changed, 129 insertions(+), 95 deletions(-) diff --git a/setup.py b/setup.py index 402d5ebcf..f48a0a200 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/__init__.py b/starcluster/__init__.py index d685a471c..034afc6f2 100644 --- a/starcluster/__init__.py +++ b/starcluster/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/awsutils.py b/starcluster/awsutils.py index 3cb22f8b7..de2215e9d 100644 --- a/starcluster/awsutils.py +++ b/starcluster/awsutils.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/balancers/__init__.py b/starcluster/balancers/__init__.py index 6b1566d4a..d54debed0 100644 --- a/starcluster/balancers/__init__.py +++ b/starcluster/balancers/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/balancers/sge/__init__.py b/starcluster/balancers/sge/__init__.py index a9344d24f..5ad7c6f68 100644 --- a/starcluster/balancers/sge/__init__.py +++ b/starcluster/balancers/sge/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/balancers/sge/visualizer.py b/starcluster/balancers/sge/visualizer.py index c17fa6317..9ddd89f40 100644 --- a/starcluster/balancers/sge/visualizer.py +++ b/starcluster/balancers/sge/visualizer.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/cli.py b/starcluster/cli.py index cc677db92..0b5528884 100644 --- a/starcluster/cli.py +++ b/starcluster/cli.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/cluster.py b/starcluster/cluster.py index f2ec15b71..bbbaa127c 100644 --- a/starcluster/cluster.py +++ b/starcluster/cluster.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/clustersetup.py b/starcluster/clustersetup.py index 52fdab8d2..d115753d2 100644 --- a/starcluster/clustersetup.py +++ b/starcluster/clustersetup.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/__init__.py b/starcluster/commands/__init__.py index c55233dc2..90327e379 100644 --- a/starcluster/commands/__init__.py +++ b/starcluster/commands/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/addnode.py b/starcluster/commands/addnode.py index 9c723ff2a..dd36ee52b 100644 --- a/starcluster/commands/addnode.py +++ b/starcluster/commands/addnode.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/base.py b/starcluster/commands/base.py index 86ef82c4b..59e39e204 100644 --- a/starcluster/commands/base.py +++ b/starcluster/commands/base.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/completers.py b/starcluster/commands/completers.py index 9a2a93416..b09945c76 100644 --- a/starcluster/commands/completers.py +++ b/starcluster/commands/completers.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/createkey.py b/starcluster/commands/createkey.py index e20acb255..06c49b62d 100644 --- a/starcluster/commands/createkey.py +++ b/starcluster/commands/createkey.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/createvolume.py b/starcluster/commands/createvolume.py index 7ddf0b279..b8d754db2 100644 --- a/starcluster/commands/createvolume.py +++ b/starcluster/commands/createvolume.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/downloadimage.py b/starcluster/commands/downloadimage.py index fab166343..45306528f 100644 --- a/starcluster/commands/downloadimage.py +++ b/starcluster/commands/downloadimage.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/ebsimage.py b/starcluster/commands/ebsimage.py index c3423ab10..01b3114a0 100644 --- a/starcluster/commands/ebsimage.py +++ b/starcluster/commands/ebsimage.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/get.py b/starcluster/commands/get.py index cf071d107..b130ba692 100644 --- a/starcluster/commands/get.py +++ b/starcluster/commands/get.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/help.py b/starcluster/commands/help.py index abae557df..6eb1d63f9 100644 --- a/starcluster/commands/help.py +++ b/starcluster/commands/help.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/listbuckets.py b/starcluster/commands/listbuckets.py index 94bf32e72..2fe5c2c4a 100644 --- a/starcluster/commands/listbuckets.py +++ b/starcluster/commands/listbuckets.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/listclusters.py b/starcluster/commands/listclusters.py index c0aed233f..6084717bd 100644 --- a/starcluster/commands/listclusters.py +++ b/starcluster/commands/listclusters.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/listimages.py b/starcluster/commands/listimages.py index 5f8875c32..80e3fe6ad 100644 --- a/starcluster/commands/listimages.py +++ b/starcluster/commands/listimages.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/listinstances.py b/starcluster/commands/listinstances.py index fea3cd39f..6d95bcc45 100644 --- a/starcluster/commands/listinstances.py +++ b/starcluster/commands/listinstances.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/listkeypairs.py b/starcluster/commands/listkeypairs.py index 3160c4d72..2be93e934 100644 --- a/starcluster/commands/listkeypairs.py +++ b/starcluster/commands/listkeypairs.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/listpublic.py b/starcluster/commands/listpublic.py index f77c29e1b..1cb94c814 100644 --- a/starcluster/commands/listpublic.py +++ b/starcluster/commands/listpublic.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/listregions.py b/starcluster/commands/listregions.py index 8f553c41f..342ea48ba 100644 --- a/starcluster/commands/listregions.py +++ b/starcluster/commands/listregions.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/listspots.py b/starcluster/commands/listspots.py index ab8ce9fc3..941e05b81 100644 --- a/starcluster/commands/listspots.py +++ b/starcluster/commands/listspots.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/listvolumes.py b/starcluster/commands/listvolumes.py index 3ce6a7a9c..165f89afd 100644 --- a/starcluster/commands/listvolumes.py +++ b/starcluster/commands/listvolumes.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/listzones.py b/starcluster/commands/listzones.py index 95e9bd267..4edaa6c67 100644 --- a/starcluster/commands/listzones.py +++ b/starcluster/commands/listzones.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/loadbalance.py b/starcluster/commands/loadbalance.py index 223a6d6fa..28e81d80f 100644 --- a/starcluster/commands/loadbalance.py +++ b/starcluster/commands/loadbalance.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/put.py b/starcluster/commands/put.py index 185c8e171..75bfbf5c9 100644 --- a/starcluster/commands/put.py +++ b/starcluster/commands/put.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/removeimage.py b/starcluster/commands/removeimage.py index 4a172abae..1a42689cb 100644 --- a/starcluster/commands/removeimage.py +++ b/starcluster/commands/removeimage.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/removekey.py b/starcluster/commands/removekey.py index 013934dfa..262b23924 100644 --- a/starcluster/commands/removekey.py +++ b/starcluster/commands/removekey.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/removenode.py b/starcluster/commands/removenode.py index abda7d828..7f0f5a793 100644 --- a/starcluster/commands/removenode.py +++ b/starcluster/commands/removenode.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/removevolume.py b/starcluster/commands/removevolume.py index eab282381..f5016dad5 100644 --- a/starcluster/commands/removevolume.py +++ b/starcluster/commands/removevolume.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/resizevolume.py b/starcluster/commands/resizevolume.py index faa01568c..b3aa75a93 100644 --- a/starcluster/commands/resizevolume.py +++ b/starcluster/commands/resizevolume.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/restart.py b/starcluster/commands/restart.py index 7538674e4..97e1e089e 100644 --- a/starcluster/commands/restart.py +++ b/starcluster/commands/restart.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/runplugin.py b/starcluster/commands/runplugin.py index 1a0dbca2a..a313d016e 100644 --- a/starcluster/commands/runplugin.py +++ b/starcluster/commands/runplugin.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/s3image.py b/starcluster/commands/s3image.py index a41319c7a..53d0654c0 100644 --- a/starcluster/commands/s3image.py +++ b/starcluster/commands/s3image.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/shell.py b/starcluster/commands/shell.py index 388c123a6..65e38c22e 100644 --- a/starcluster/commands/shell.py +++ b/starcluster/commands/shell.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/showbucket.py b/starcluster/commands/showbucket.py index 71ad0ef2f..8adbc2f06 100644 --- a/starcluster/commands/showbucket.py +++ b/starcluster/commands/showbucket.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/showconsole.py b/starcluster/commands/showconsole.py index 55317cb65..fe3d15337 100644 --- a/starcluster/commands/showconsole.py +++ b/starcluster/commands/showconsole.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/showimage.py b/starcluster/commands/showimage.py index 00e760530..ddd36c95c 100644 --- a/starcluster/commands/showimage.py +++ b/starcluster/commands/showimage.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/spothistory.py b/starcluster/commands/spothistory.py index 0b35c30df..87d44b742 100644 --- a/starcluster/commands/spothistory.py +++ b/starcluster/commands/spothistory.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/sshinstance.py b/starcluster/commands/sshinstance.py index e5a9f0454..69ab7c871 100644 --- a/starcluster/commands/sshinstance.py +++ b/starcluster/commands/sshinstance.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/sshmaster.py b/starcluster/commands/sshmaster.py index be6b5fb88..c6d8df41e 100644 --- a/starcluster/commands/sshmaster.py +++ b/starcluster/commands/sshmaster.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/sshnode.py b/starcluster/commands/sshnode.py index 6a618bb75..f7fa833a7 100644 --- a/starcluster/commands/sshnode.py +++ b/starcluster/commands/sshnode.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/start.py b/starcluster/commands/start.py index c6c50173f..27ba14ef6 100644 --- a/starcluster/commands/start.py +++ b/starcluster/commands/start.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/stop.py b/starcluster/commands/stop.py index 880ac9c83..61548fd94 100644 --- a/starcluster/commands/stop.py +++ b/starcluster/commands/stop.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/commands/terminate.py b/starcluster/commands/terminate.py index b15cc2a6b..39be79d02 100644 --- a/starcluster/commands/terminate.py +++ b/starcluster/commands/terminate.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/completion.py b/starcluster/completion.py index fc703ca66..7e4f59801 100644 --- a/starcluster/completion.py +++ b/starcluster/completion.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/config.py b/starcluster/config.py index da53a4295..e15c866e3 100644 --- a/starcluster/config.py +++ b/starcluster/config.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/deathrow.py b/starcluster/deathrow.py index 7c47a477d..e5bb6acfa 100644 --- a/starcluster/deathrow.py +++ b/starcluster/deathrow.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/exception.py b/starcluster/exception.py index d2efcc4d4..51eda3da9 100644 --- a/starcluster/exception.py +++ b/starcluster/exception.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/image.py b/starcluster/image.py index c597f427f..7eb396c76 100644 --- a/starcluster/image.py +++ b/starcluster/image.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/logger.py b/starcluster/logger.py index 4da8b3afc..6871634ab 100644 --- a/starcluster/logger.py +++ b/starcluster/logger.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/managers.py b/starcluster/managers.py index c651675b9..8738265b5 100644 --- a/starcluster/managers.py +++ b/starcluster/managers.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/node.py b/starcluster/node.py index bc81ff679..a7e9306c9 100644 --- a/starcluster/node.py +++ b/starcluster/node.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/plugins/__init__.py b/starcluster/plugins/__init__.py index 22ec68202..fe991ca8d 100644 --- a/starcluster/plugins/__init__.py +++ b/starcluster/plugins/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/plugins/boto.py b/starcluster/plugins/boto.py index 89928e3f5..a575593c5 100644 --- a/starcluster/plugins/boto.py +++ b/starcluster/plugins/boto.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/plugins/condor.py b/starcluster/plugins/condor.py index 596a052eb..f21096da6 100644 --- a/starcluster/plugins/condor.py +++ b/starcluster/plugins/condor.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/plugins/hadoop.py b/starcluster/plugins/hadoop.py index 5519b381c..98862b1f8 100644 --- a/starcluster/plugins/hadoop.py +++ b/starcluster/plugins/hadoop.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/plugins/ipcluster.py b/starcluster/plugins/ipcluster.py index de63700f0..1939a76a2 100644 --- a/starcluster/plugins/ipcluster.py +++ b/starcluster/plugins/ipcluster.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/plugins/mpich2.py b/starcluster/plugins/mpich2.py index 9eb340578..c91b43eb5 100644 --- a/starcluster/plugins/mpich2.py +++ b/starcluster/plugins/mpich2.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/plugins/mysql.py b/starcluster/plugins/mysql.py index 6221de1a9..1c0ac6ca6 100644 --- a/starcluster/plugins/mysql.py +++ b/starcluster/plugins/mysql.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/plugins/pkginstaller.py b/starcluster/plugins/pkginstaller.py index 92ad21037..fbce128a8 100644 --- a/starcluster/plugins/pkginstaller.py +++ b/starcluster/plugins/pkginstaller.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/plugins/pypkginstaller.py b/starcluster/plugins/pypkginstaller.py index e9dd9c3f3..07d94e4a2 100644 --- a/starcluster/plugins/pypkginstaller.py +++ b/starcluster/plugins/pypkginstaller.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/plugins/sge.py b/starcluster/plugins/sge.py index e19a0e29d..2a3662708 100644 --- a/starcluster/plugins/sge.py +++ b/starcluster/plugins/sge.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/plugins/tmux.py b/starcluster/plugins/tmux.py index b213cbea3..336b44e18 100644 --- a/starcluster/plugins/tmux.py +++ b/starcluster/plugins/tmux.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/plugins/users.py b/starcluster/plugins/users.py index bd90b8bfd..4383db79d 100644 --- a/starcluster/plugins/users.py +++ b/starcluster/plugins/users.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/plugins/xvfb.py b/starcluster/plugins/xvfb.py index 02d3b8262..2361ee043 100644 --- a/starcluster/plugins/xvfb.py +++ b/starcluster/plugins/xvfb.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/spinner.py b/starcluster/spinner.py index 1cdbf64ab..913c3838f 100644 --- a/starcluster/spinner.py +++ b/starcluster/spinner.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/sshutils.py b/starcluster/sshutils.py index e8e414f50..111847c35 100644 --- a/starcluster/sshutils.py +++ b/starcluster/sshutils.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/static.py b/starcluster/static.py index 8aeadf502..a35200ffa 100644 --- a/starcluster/static.py +++ b/starcluster/static.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/templates/__init__.py b/starcluster/templates/__init__.py index bb5be170b..1ed4b92b2 100644 --- a/starcluster/templates/__init__.py +++ b/starcluster/templates/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/templates/condor.py b/starcluster/templates/condor.py index ebfa31b22..507c5edf0 100644 --- a/starcluster/templates/condor.py +++ b/starcluster/templates/condor.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/templates/config.py b/starcluster/templates/config.py index afc1b72be..885d741c3 100644 --- a/starcluster/templates/config.py +++ b/starcluster/templates/config.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/templates/sge.py b/starcluster/templates/sge.py index 394debe05..dcf189941 100644 --- a/starcluster/templates/sge.py +++ b/starcluster/templates/sge.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/templates/user_msgs.py b/starcluster/templates/user_msgs.py index 6f6a0811c..f11bdd65f 100644 --- a/starcluster/templates/user_msgs.py +++ b/starcluster/templates/user_msgs.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/tests/__init__.py b/starcluster/tests/__init__.py index 1861527c7..ca867354f 100644 --- a/starcluster/tests/__init__.py +++ b/starcluster/tests/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/tests/conftest.py b/starcluster/tests/conftest.py index 2556742b0..b84c0c0e6 100644 --- a/starcluster/tests/conftest.py +++ b/starcluster/tests/conftest.py @@ -1,3 +1,20 @@ +# Copyright 2009-2014 Justin Riley +# +# This file is part of StarCluster. +# +# StarCluster is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# StarCluster is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with StarCluster. If not, see . + import pytest from starcluster import static diff --git a/starcluster/tests/mytestplugin.py b/starcluster/tests/mytestplugin.py index 324e04262..ea0cb6579 100644 --- a/starcluster/tests/mytestplugin.py +++ b/starcluster/tests/mytestplugin.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/tests/templates/__init__.py b/starcluster/tests/templates/__init__.py index 804b78ae8..60d02d94e 100644 --- a/starcluster/tests/templates/__init__.py +++ b/starcluster/tests/templates/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/tests/templates/config.py b/starcluster/tests/templates/config.py index e74ee8f74..33b29852f 100644 --- a/starcluster/tests/templates/config.py +++ b/starcluster/tests/templates/config.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/tests/templates/sge_balancer.py b/starcluster/tests/templates/sge_balancer.py index 6748eb399..62ca1d9a3 100644 --- a/starcluster/tests/templates/sge_balancer.py +++ b/starcluster/tests/templates/sge_balancer.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/tests/test_cluster_validation.py b/starcluster/tests/test_cluster_validation.py index 569ebe35f..dd7fcec30 100644 --- a/starcluster/tests/test_cluster_validation.py +++ b/starcluster/tests/test_cluster_validation.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/tests/test_config.py b/starcluster/tests/test_config.py index d919cf43f..784d9c8e8 100644 --- a/starcluster/tests/test_config.py +++ b/starcluster/tests/test_config.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/tests/test_live.py b/starcluster/tests/test_live.py index e023fcd8a..e323282e3 100644 --- a/starcluster/tests/test_live.py +++ b/starcluster/tests/test_live.py @@ -1,3 +1,20 @@ +# Copyright 2009-2014 Justin Riley +# +# This file is part of StarCluster. +# +# StarCluster is free software: you can redistribute it and/or modify it under +# the terms of the GNU Lesser General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) any +# later version. +# +# StarCluster is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with StarCluster. If not, see . + import pytest from starcluster.plugins.sge import SGEPlugin diff --git a/starcluster/tests/test_sge_balancer.py b/starcluster/tests/test_sge_balancer.py index 14f0472e3..888d9fc0a 100644 --- a/starcluster/tests/test_sge_balancer.py +++ b/starcluster/tests/test_sge_balancer.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/tests/test_threadpool.py b/starcluster/tests/test_threadpool.py index ddc7d9426..ef3dd263f 100644 --- a/starcluster/tests/test_threadpool.py +++ b/starcluster/tests/test_threadpool.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/tests/test_userdata_utils.py b/starcluster/tests/test_userdata_utils.py index 16e48b0b3..b06625c48 100644 --- a/starcluster/tests/test_userdata_utils.py +++ b/starcluster/tests/test_userdata_utils.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/threadpool.py b/starcluster/threadpool.py index 69e253226..9234e4f40 100644 --- a/starcluster/threadpool.py +++ b/starcluster/threadpool.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/userdata.py b/starcluster/userdata.py index a77f8ca29..5f6c5a7bb 100644 --- a/starcluster/userdata.py +++ b/starcluster/userdata.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/utils.py b/starcluster/utils.py index b5b1744b1..ec6f0bfff 100644 --- a/starcluster/utils.py +++ b/starcluster/utils.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/validators.py b/starcluster/validators.py index 9aa7cf683..5f5ef1ac3 100644 --- a/starcluster/validators.py +++ b/starcluster/validators.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/volume.py b/starcluster/volume.py index b07e8db30..1ae2f507e 100644 --- a/starcluster/volume.py +++ b/starcluster/volume.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. # diff --git a/starcluster/webtools.py b/starcluster/webtools.py index 52c767919..acdd165cc 100644 --- a/starcluster/webtools.py +++ b/starcluster/webtools.py @@ -1,4 +1,4 @@ -# Copyright 2009-2013 Justin Riley +# Copyright 2009-2014 Justin Riley # # This file is part of StarCluster. #