summaryrefslogtreecommitdiffstats
path: root/cloudmasterd
diff options
context:
space:
mode:
authorChris Alfonso <calfonso@redhat.com>2008-06-27 10:29:52 -0400
committerChris Alfonso <calfonso@redhat.com>2008-06-27 10:29:52 -0400
commit809bba044b3205b4365c31237dbb1e7723d95f4c (patch)
tree3d1bab0e089cf8165c11bfdd11d06dc466414b20 /cloudmasterd
parent210bb2efbd3e01015267c34874785e67382308f4 (diff)
downloadtools-809bba044b3205b4365c31237dbb1e7723d95f4c.tar.gz
tools-809bba044b3205b4365c31237dbb1e7723d95f4c.tar.xz
tools-809bba044b3205b4365c31237dbb1e7723d95f4c.zip
Added the gpl v2 header to all the rb files
Diffstat (limited to 'cloudmasterd')
-rwxr-xr-xcloudmasterd/extra/prime-example-db.rb16
-rw-r--r--cloudmasterd/lib/cloudmasterd.rb16
-rw-r--r--cloudmasterd/lib/cloudmasterd/syncer.rb16
-rw-r--r--cloudmasterd/test/test_cloudmasterd.rb16
4 files changed, 64 insertions, 0 deletions
diff --git a/cloudmasterd/extra/prime-example-db.rb b/cloudmasterd/extra/prime-example-db.rb
index 0788c8f..12d6f71 100755
--- a/cloudmasterd/extra/prime-example-db.rb
+++ b/cloudmasterd/extra/prime-example-db.rb
@@ -1,3 +1,19 @@
+# Copyright (C) 2008 Red Hat, Inc
+
+# 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.
+
+# This program 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 General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# a long with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
#!/usr/bin/env ruby
require 'rubygems'
diff --git a/cloudmasterd/lib/cloudmasterd.rb b/cloudmasterd/lib/cloudmasterd.rb
index 64bd514..a52f8c8 100644
--- a/cloudmasterd/lib/cloudmasterd.rb
+++ b/cloudmasterd/lib/cloudmasterd.rb
@@ -1,3 +1,19 @@
+# Copyright (C) 2008 Red Hat, Inc
+
+# 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.
+
+# This program 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 General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# a long with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
require 'yaml'
require 'fileutils'
require 'rubygems'
diff --git a/cloudmasterd/lib/cloudmasterd/syncer.rb b/cloudmasterd/lib/cloudmasterd/syncer.rb
index 87e09b2..b3e2e89 100644
--- a/cloudmasterd/lib/cloudmasterd/syncer.rb
+++ b/cloudmasterd/lib/cloudmasterd/syncer.rb
@@ -1,3 +1,19 @@
+# Copyright (C) 2008 Red Hat, Inc
+
+# 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.
+
+# This program 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 General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# a long with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
#!/usr/bin/ruby
require 'rubygems'
diff --git a/cloudmasterd/test/test_cloudmasterd.rb b/cloudmasterd/test/test_cloudmasterd.rb
index 736c218..8f441bf 100644
--- a/cloudmasterd/test/test_cloudmasterd.rb
+++ b/cloudmasterd/test/test_cloudmasterd.rb
@@ -1,3 +1,19 @@
+# Copyright (C) 2008 Red Hat, Inc
+
+# 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.
+
+# This program 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 General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# a long with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
require 'test/unit'
class TestCloudmasterd < Test::Unit::TestCase