Updated all *.py files to have a uniform GPL boilerplate. Expanded copyright year ranges and listed authors (if they were in the comment section) under the Red Hat Author(s) section. --- anaconda_log.py | 24 +++++++++++++++--------- autopart.py | 21 ++++++++++++++------- backend.py | 20 +++++++++++++------- bootloader.py | 21 ++++++++++++++------- cmdline.py | 19 +++++++++++++------ constants.py | 20 +++++++++++++------- cryptodev.py | 21 +++++++++++++++++++++ desktop.py | 20 +++++++++++++------- dispatch.py | 19 +++++++++++++------ dmraid.py | 22 ++++++++++++++-------- exception.py | 25 ++++++++++++++++--------- firewall.py | 22 ++++++++++++++-------- flags.py | 18 ++++++++++++------ fsset.py | 23 +++++++++++++++-------- gui.py | 21 ++++++++++++++------- image.py | 21 ++++++++++++++------- installclass.py | 27 +++++++++++++++++---------- installmethod.py | 19 +++++++++++++------ instdata.py | 21 ++++++++++++++------- iscsi.py | 18 ++++++++++++------ iutil.py | 21 ++++++++++++++------- kickstart.py | 18 +++++++++++++----- language.py | 19 +++++++++++++------ livecd.py | 21 ++++++++++++++------- lvm.py | 20 ++++++++++++++------ lvmErrors.py | 21 ++++++++++++++------- minihal.py | 22 +++++++++++++++------- network.py | 26 ++++++++++++++++---------- packages.py | 27 +++++++++++++++++---------- partErrors.py | 25 ++++++++++++++++--------- partIntfHelpers.py | 27 +++++++++++++++++---------- partRequests.py | 28 ++++++++++++++++++---------- partedUtils.py | 28 ++++++++++++++++++---------- partitions.py | 28 ++++++++++++++++++---------- product.py | 19 +++++++++++++------ raid.py | 23 +++++++++++++++-------- rescue.py | 22 ++++++++++++++-------- security.py | 18 ++++++++++++------ sortedtransaction.py | 18 ++++++++++++++++++ syslogd.py | 20 +++++++++++++------- text.py | 21 ++++++++++++++------- timer.py | 20 +++++++++++++------- timezone.py | 18 ++++++++++++------ upgrade.py | 21 ++++++++++++++------- users.py | 19 +++++++++++++------ vnc.py | 18 ++++++++++++------ whiteout.py | 15 ++++++++++++++- xsetup.py | 20 +++++++++++++------- yuminstall.py | 18 +++++++++++++----- zfcp.py | 20 +++++++++++++------- 50 files changed, 717 insertions(+), 346 deletions(-) diff --git a/anaconda_log.py b/anaconda_log.py index abdbcc2..1edb8a0 100644 --- a/anaconda_log.py +++ b/anaconda_log.py @@ -2,18 +2,24 @@ # anaconda_log.py: Support for logging to multiple destinations with log # levels. # -# Chris Lumens <clumens@xxxxxxxxxx> -# Matt Wilson <msw@xxxxxxxxxx> -# Michael Fulbright <msf@xxxxxxxxxx> +# Copyright (C) 2000, 2001, 2002, 2005 Red Hat, Inc. All rights reserved. # -# Copyright 2000-2002,2005 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Chris Lumens <clumens@xxxxxxxxxx> +# Matt Wilson <msw@xxxxxxxxxx> +# Michael Fulbright <msf@xxxxxxxxxx> # import sys diff --git a/autopart.py b/autopart.py index 899de6f..1ac5ff5 100644 --- a/autopart.py +++ b/autopart.py @@ -1,16 +1,23 @@ # # autopart.py - auto partitioning logic # -# Jeremy Katz <katzj@xxxxxxxxxx> +# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Red Hat, Inc. +# All rights reserved. # -# Copyright 2001-2007 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Jeremy Katz <katzj@xxxxxxxxxx> # import parted diff --git a/backend.py b/backend.py index adbaa15..eba46d3 100644 --- a/backend.py +++ b/backend.py @@ -1,17 +1,23 @@ # # backend.py: Interface for installation backends # -# Paul Nasrat <pnasrat@xxxxxxxxxx> -# Jeremy Katz <katzj@xxxxxxxxxx> +# Copyright (C) 2005, 2006, 2007 Red Hat, Inc. All rights reserved. # -# Copyright (c) 2005-2007 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 software may be freely redistributed under the terms of the GNU -# general public license. +# 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 -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Paul Nasrat <pnasrat@xxxxxxxxxx> +# Jeremy Katz <katzj@xxxxxxxxxx> # import glob diff --git a/bootloader.py b/bootloader.py index e7d8465..7bf6359 100644 --- a/bootloader.py +++ b/bootloader.py @@ -1,17 +1,24 @@ # # bootloader.py: anaconda bootloader shims # -# Erik Troan <ewt@xxxxxxxxxx> -# Jeremy Katz <katzj@xxxxxxxxxx> +# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Red Hat, Inc. +# All rights reserved. # -# Copyright 2001-2006 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 software may be freely redistributed under the terms of the GNU -# general public license. +# 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 -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Erik Troan <ewt@xxxxxxxxxx> +# Jeremy Katz <katzj@xxxxxxxxxx> # import isys diff --git a/cmdline.py b/cmdline.py index 972ce9c..18d7363 100644 --- a/cmdline.py +++ b/cmdline.py @@ -1,16 +1,23 @@ # # cmdline.py - non-interactive, very very simple frontend to anaconda # -# Jeremy Katz <katzj@xxxxxxxxxx +# Copyright (C) 2003, 2004, 2005, 2006, 2007 Red Hat, Inc. +# All rights reserved. # -# Copyright 2003-2007 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 software may be freely redistributed under the terms of the GNU -# general public license. +# 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 -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Jeremy Katz <katzj@xxxxxxxxxx # import time diff --git a/constants.py b/constants.py index 06f2151..c0007f7 100644 --- a/constants.py +++ b/constants.py @@ -1,16 +1,22 @@ # # constants.py: anaconda constants # -# Erik Troan <ewt@xxxxxxxxxx> +# Copyright (C) 2001 Red Hat, Inc. All rights reserved. # -# Copyright 2001 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Erik Troan <ewt@xxxxxxxxxx> # from rhpl.translate import _, N_ diff --git a/cryptodev.py b/cryptodev.py index 0b6967b..baafdb5 100644 --- a/cryptodev.py +++ b/cryptodev.py @@ -1,3 +1,24 @@ +# +# cryptodev.py +# +# Copyright (C) 2007 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 +# 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 +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Dave Lehman <dlehman@xxxxxxxxxx> +# + import os import iutil diff --git a/desktop.py b/desktop.py index cc884a5..f5e8ece 100644 --- a/desktop.py +++ b/desktop.py @@ -1,16 +1,22 @@ # # desktop.py - install data for default desktop and run level # -# Matt Wilson <msw@xxxxxxxxxx> +# Copyright (C) 2001, 2002 Red Hat, Inc. All rights reserved. # -# Copyright 2001-2002 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Matt Wilson <msw@xxxxxxxxxx> # import string diff --git a/dispatch.py b/dispatch.py index 1c0c2fb..1d7c66e 100644 --- a/dispatch.py +++ b/dispatch.py @@ -1,16 +1,23 @@ # # dispatch.py: install/upgrade master flow control # -# Erik Troan <ewt@xxxxxxxxxx> +# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Red Hat, Inc. +# All rights reserved. # -# Copyright 2001-2006 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 software may be freely redistributed under the terms of the GNU -# general public license. +# 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 -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Erik Troan <ewt@xxxxxxxxxx> # import string diff --git a/dmraid.py b/dmraid.py index 6f7f6bd..78713c8 100644 --- a/dmraid.py +++ b/dmraid.py @@ -1,18 +1,24 @@ -#!/usr/bin/python # # dmraid.py - dmraid probing control # -# Peter Jones <pjones@xxxxxxxxxx> +# Copyright (C) 2005 Red Hat, Inc. All rights reserved. # -# Copyright 2005 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. # +# Red Hat Author(s): Peter Jones <pjones@xxxxxxxxxx> +# + """DMRaid probing control.""" # XXX dmraid and md raid should be abstracted from the same thing. -pj # XXX dmraid and lvm should use a common control mechanism (such as block.dm) diff --git a/exception.py b/exception.py index 22170d0..3449bd7 100644 --- a/exception.py +++ b/exception.py @@ -1,18 +1,25 @@ # # exception.py - general exception formatting and saving # -# Matt Wilson <msw@xxxxxxxxxx> -# Erik Troan <ewt@xxxxxxxxxx> -# Chris Lumens <clumens@xxxxxxxxxx> +# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Red Hat, Inc. +# All rights reserved. # -# Copyright 2000-2007 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Matt Wilson <msw@xxxxxxxxxx> +# Erik Troan <ewt@xxxxxxxxxx> +# Chris Lumens <clumens@xxxxxxxxxx> # from constants import * diff --git a/firewall.py b/firewall.py index 71f2b83..2a4b729 100644 --- a/firewall.py +++ b/firewall.py @@ -1,17 +1,23 @@ # # firewall.py - firewall install data and installation # -# Bill Nottingham <notting@xxxxxxxxxx> -# Jeremy Katz <katzj@xxxxxxxxxx> +# Copyright (C) 2004 Red Hat, Inc. All rights reserved. # -# Copyright 2004 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Bill Nottingham <notting@xxxxxxxxxx> +# Jeremy Katz <katzj@xxxxxxxxxx> # import iutil diff --git a/flags.py b/flags.py index 0797d0d..227f352 100644 --- a/flags.py +++ b/flags.py @@ -1,14 +1,20 @@ # # flags.py: global anaconda flags # -# Copyright 2001 Red Hat, Inc. +# Copyright (C) 2001 Red Hat, Inc. All rights reserved. # -# This software may be freely redistributed under the terms of the GNU -# library public license. +# 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. # -# You should have received a copy of the GNU Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# 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 +# along with this program. If not, see <http://www.gnu.org/licenses/>. # import os diff --git a/fsset.py b/fsset.py index 180922f..828071e 100644 --- a/fsset.py +++ b/fsset.py @@ -1,17 +1,24 @@ # # fsset.py: filesystem management # -# Matt Wilson <msw@xxxxxxxxxx> -# Jeremy Katz <katzj@xxxxxxxxxx> +# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Red Hat, Inc. +# All rights reserved. # -# Copyright 2001-2007 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Matt Wilson <msw@xxxxxxxxxx> +# Jeremy Katz <katzj@xxxxxxxxxx> # import math diff --git a/gui.py b/gui.py index d55f77b..eec47b0 100755 --- a/gui.py +++ b/gui.py @@ -1,17 +1,24 @@ # # gui.py - Graphical front end for anaconda # -# Matt Wilson <msw@xxxxxxxxxx> -# Michael Fulbright <msf@xxxxxxxxxx> +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 +# Red Hat, Inc. All rights reserved. # -# Copyright 1999-2007 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 software may be freely redistributed under the terms of the GNU -# general public license. +# 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 -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Matt Wilson <msw@xxxxxxxxxx> +# Michael Fulbright <msf@xxxxxxxxxx> # import os diff --git a/image.py b/image.py index a5d934c..ba5b978 100644 --- a/image.py +++ b/image.py @@ -1,15 +1,22 @@ # -# Support methods for CD/DVD and ISO image installations. +# image.py: Support methods for CD/DVD and ISO image installations. # -# Copyright 2007 Red Hat, Inc. +# Copyright (C) 2007 Red Hat, Inc. All rights reserved. # -# This software may be freely redistributed under the terms of the GNU -# library public license. +# 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. # -# You should have received a copy of the GNU Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# 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 +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# + import isys import os, os.path, stat, string, sys from constants import * diff --git a/installclass.py b/installclass.py index 556bc14..68a7e37 100644 --- a/installclass.py +++ b/installclass.py @@ -1,17 +1,24 @@ -# this is the prototypical class for workstation, server, and kickstart -# installs # -# The interface to BaseInstallClass is *public* -- ISVs/OEMs can customize the -# install by creating a new derived type of this class. +# installclass.py: This is the prototypical class for workstation, server, and +# kickstart installs. The interface to BaseInstallClass is *public* -- +# ISVs/OEMs can customize the install by creating a new derived type of this +# class. # -# Copyright 1999-2007 Red Hat, Inc. +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 +# Red Hat, Inc. All rights reserved. # -# This software may be freely redistributed under the terms of the GNU -# library public license. +# 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. # -# You should have received a copy of the GNU Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# 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 +# along with this program. If not, see <http://www.gnu.org/licenses/>. # import os, sys, iutil diff --git a/installmethod.py b/installmethod.py index d1cf8bd..b8785e1 100644 --- a/installmethod.py +++ b/installmethod.py @@ -1,14 +1,21 @@ # # installmethod.py - Base class for install methods # -# Copyright 1999-2007 Red Hat, Inc. +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 +# Red Hat, Inc. All rights reserved. # -# This software may be freely redistributed under the terms of the GNU -# library public license. +# 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. # -# You should have received a copy of the GNU Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# 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 +# along with this program. If not, see <http://www.gnu.org/licenses/>. # import os, shutil, string diff --git a/instdata.py b/instdata.py index a97fe2f..08b6402 100644 --- a/instdata.py +++ b/instdata.py @@ -1,16 +1,23 @@ # # instdata.py - central store for all configuration data needed to install # -# Erik Troan <ewt@xxxxxxxxxx> +# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Red Hat, Inc. +# All rights reserved. # -# Copyright 2001-2007 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Erik Troan <ewt@xxxxxxxxxx> # import os diff --git a/iscsi.py b/iscsi.py index 2eec54e..ea34e85 100644 --- a/iscsi.py +++ b/iscsi.py @@ -1,15 +1,21 @@ # # iscsi.py - iscsi class # -# Copyright 2005, 2006 IBM, Inc., -# Copyright 2006 Red Hat, Inc. +# Copyright (C) 2005, 2006 IBM, Inc. All rights reserved. +# Copyright (C) 2006 Red Hat, Inc. All rights reserved. # -# This software may be freely redistributed under the terms of the GNU -# general public license. +# 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 -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# along with this program. If not, see <http://www.gnu.org/licenses/>. # import os diff --git a/iutil.py b/iutil.py index 43d5f60..4b52c5c 100644 --- a/iutil.py +++ b/iutil.py @@ -1,16 +1,23 @@ # # iutil.py - generic install utility functions # -# Erik Troan <ewt@xxxxxxxxxx> +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 +# Red Hat, Inc. All rights reserved. # -# Copyright 1999-2007 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Erik Troan <ewt@xxxxxxxxxx> # import os, isys, string, stat diff --git a/kickstart.py b/kickstart.py index 580c0e1..b648625 100644 --- a/kickstart.py +++ b/kickstart.py @@ -1,15 +1,23 @@ # # kickstart.py: kickstart install support # -# Copyright 1999-2007 Red Hat, Inc. +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 +# Red Hat, Inc. All rights reserved. # -# This software may be freely redistributed under the terms of the GNU -# general public license. +# 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 -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# along with this program. If not, see <http://www.gnu.org/licenses/>. # + import iutil import isys import os diff --git a/language.py b/language.py index cc14aeb..908b3f2 100644 --- a/language.py +++ b/language.py @@ -3,14 +3,21 @@ # installer runtime language choice and installed system # language support. # -# Copyright 2001-2005 Red Hat, Inc. +# Copyright (C) 2001, 2002, 2003, 2004, 2005 Red Hat, Inc. +# All rights reserved. # -# This software may be freely redistributed under the terms of the GNU -# library public license. +# 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. # -# You should have received a copy of the GNU Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# 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 +# along with this program. If not, see <http://www.gnu.org/licenses/>. # import os diff --git a/livecd.py b/livecd.py index 368e6af..e315682 100644 --- a/livecd.py +++ b/livecd.py @@ -1,20 +1,27 @@ # -# An anaconda backend to do an install from a live CD image +# livecd.py: An anaconda backend to do an install from a live CD image # # The basic idea is that with a live CD, we already have an install # and should be able to just copy those bits over to the disk. So we dd # the image, move things to the "right" filesystem as needed, and then # resize the rootfs to the size of its container. # -# Copyright 2007 Red Hat, Inc. -# Jeremy Katz <katzj@xxxxxxxxxx> +# Copyright (C) 2007 Red Hat, Inc. All rights reserved. # -# This software may be freely redistributed under the terms of the GNU -# general public license. +# 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 -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Jeremy Katz <katzj@xxxxxxxxxx> # import os, sys diff --git a/lvm.py b/lvm.py index 4e14ac4..52bd615 100644 --- a/lvm.py +++ b/lvm.py @@ -1,15 +1,23 @@ +# # lvm.py - lvm probing control # -# Jeremy Katz <katzj@xxxxxxxxxx> +# Copyright (C) 2002 Red Hat, Inc. All rights reserved. # -# Copyright 2002 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 software may be freely redistributed under the terms of the GNU -# general public license. +# 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 -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Jeremy Katz <katzj@xxxxxxxxxx> +# import iutil import os,sys diff --git a/lvmErrors.py b/lvmErrors.py index c69e9b5..7f855a9 100644 --- a/lvmErrors.py +++ b/lvmErrors.py @@ -1,17 +1,24 @@ # # lvmErrors.py: lvm error exceptions # -# Peter Jones <pjones@xxxxxxxxxx> +# Copyright (C) 2007 Red Hat, Inc. All rights reserved. # -# Copyright 2007 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. # +# Red Hat Author(s): Peter Jones <pjones@xxxxxxxxxx> +# + """Exceptions for use in lvm operations.""" import string diff --git a/minihal.py b/minihal.py index 94c5282..7f58a75 100644 --- a/minihal.py +++ b/minihal.py @@ -1,16 +1,24 @@ # # minihal.py: Simple wrapper around HAL # -# Bill Nottingham <notting@xxxxxxxxxx> +# Copyright (C) 2007 Red Hat, Inc. All rights reserved. # -# Copyright 2007 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Bill Nottingham <notting@xxxxxxxxxx> +# + """Simple wrapper around HAL""" import dbus diff --git a/network.py b/network.py index c8b8fa9..b0f24d5 100644 --- a/network.py +++ b/network.py @@ -1,19 +1,25 @@ # # network.py - network configuration install data # -# Matt Wilson <ewt@xxxxxxxxxx> -# Erik Troan <ewt@xxxxxxxxxx> -# Mike Fulbright <msf@xxxxxxxxxx> -# Brent Fox <bfox@xxxxxxxxxx> +# Copyright (C) 2001, 2002, 2003 Red Hat, Inc. All rights reserved. # -# Copyright 2001-2003 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Matt Wilson <ewt@xxxxxxxxxx> +# Erik Troan <ewt@xxxxxxxxxx> +# Mike Fulbright <msf@xxxxxxxxxx> +# Brent Fox <bfox@xxxxxxxxxx> # import string diff --git a/packages.py b/packages.py index cb6620e..f35ac31 100644 --- a/packages.py +++ b/packages.py @@ -1,19 +1,26 @@ # # packages.py: package management - mainly package installation # -# Erik Troan <ewt@xxxxxxxxxx> -# Matt Wilson <msw@xxxxxxxxxx> -# Michael Fulbright <msf@xxxxxxxxxx> -# Jeremy Katz <katzj@xxxxxxxxxx> +# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Red Hat, Inc. +# All rights reserved. # -# Copyright 2001-2006 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Erik Troan <ewt@xxxxxxxxxx> +# Matt Wilson <msw@xxxxxxxxxx> +# Michael Fulbright <msf@xxxxxxxxxx> +# Jeremy Katz <katzj@xxxxxxxxxx> # import iutil diff --git a/partErrors.py b/partErrors.py index 9aa323c..16c3f85 100644 --- a/partErrors.py +++ b/partErrors.py @@ -1,19 +1,26 @@ # # partErrors.py: partitioning error exceptions # -# Matt Wilson <msw@xxxxxxxxxx> -# Jeremy Katz <katzj@xxxxxxxxxx> -# Mike Fulbright <msf@xxxxxxxxxx> +# Copyright (C) 2002 Red Hat, Inc. All rights reserved. # -# Copyright 2002 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. # +# Red Hat Author(s): Matt Wilson <msw@xxxxxxxxxx> +# Jeremy Katz <katzj@xxxxxxxxxx> +# Mike Fulbright <msf@xxxxxxxxxx> +# + """Exceptions for use in partitioning.""" diff --git a/partIntfHelpers.py b/partIntfHelpers.py index 2bd0eba..9f53b8b 100644 --- a/partIntfHelpers.py +++ b/partIntfHelpers.py @@ -1,20 +1,27 @@ # # partIntfHelpers.py: partitioning interface helper functions # -# Matt Wilson <msw@xxxxxxxxxx> -# Jeremy Katz <katzj@xxxxxxxxxx> -# Mike Fulbright <msf@xxxxxxxxxx> -# Harald Hoyer <harald@xxxxxxxxx> +# Copyright (C) 2002 Red Hat, Inc. All rights reserved. # -# Copyright 2002 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. # +# Red Hat Author(s): Matt Wilson <msw@xxxxxxxxxx> +# Jeremy Katz <katzj@xxxxxxxxxx> +# Mike Fulbright <msf@xxxxxxxxxx> +# Harald Hoyer <harald@xxxxxxxxx> +# + """Helper functions shared between partitioning interfaces.""" import string diff --git a/partRequests.py b/partRequests.py index d0e6c93..1845e63 100644 --- a/partRequests.py +++ b/partRequests.py @@ -1,20 +1,28 @@ # # partRequests.py: partition request objects and management thereof # -# Matt Wilson <msw@xxxxxxxxxx> -# Jeremy Katz <katzj@xxxxxxxxxx> -# Mike Fulbright <msf@xxxxxxxxxx> -# Harald Hoyer <harald@xxxxxxxxx> +# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Red Hat, Inc. +# All rights reserved. # -# Copyright 2002-2007 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. # +# Red Hat Author(s): Matt Wilson <msw@xxxxxxxxxx> +# Jeremy Katz <katzj@xxxxxxxxxx> +# Mike Fulbright <msf@xxxxxxxxxx> +# Harald Hoyer <harald@xxxxxxxxx> +# + """Partition request objects and management thereof.""" import parted diff --git a/partedUtils.py b/partedUtils.py index 508d54b..971380f 100644 --- a/partedUtils.py +++ b/partedUtils.py @@ -1,20 +1,28 @@ # # partedUtils.py: helper functions for use with parted objects # -# Matt Wilson <msw@xxxxxxxxxx> -# Jeremy Katz <katzj@xxxxxxxxxx> -# Mike Fulbright <msf@xxxxxxxxxx> -# Karsten Hopp <karsten@xxxxxxxxxx> +# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Red Hat, Inc. +# All rights reserved. # -# Copyright 2002-2007 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. # +# Red Hat Author(s): Matt Wilson <msw@xxxxxxxxxx> +# Jeremy Katz <katzj@xxxxxxxxxx> +# Mike Fulbright <msf@xxxxxxxxxx> +# Karsten Hopp <karsten@xxxxxxxxxx> +# + """Helper functions for use when dealing with parted objects.""" import parted diff --git a/partitions.py b/partitions.py index fb77e1e..c683169 100644 --- a/partitions.py +++ b/partitions.py @@ -1,20 +1,28 @@ # # partitions.py: partition object containing partitioning info # -# Matt Wilson <msw@xxxxxxxxxx> -# Jeremy Katz <katzj@xxxxxxxxxx> -# Mike Fulbright <msf@xxxxxxxxxx> -# Harald Hoyer <harald@xxxxxxxxx> +# Copyright (C) 2002, 2003, 2004, 2005, 2006 Red Hat, Inc. +# All rights reserved. # -# Copyright 2002-2006 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. # +# Red Hat Author(s): Matt Wilson <msw@xxxxxxxxxx> +# Jeremy Katz <katzj@xxxxxxxxxx> +# Mike Fulbright <msf@xxxxxxxxxx> +# Harald Hoyer <harald@xxxxxxxxx> +# + """Overarching partition object.""" import parted diff --git a/product.py b/product.py index 86960d0..1ebd6eb 100644 --- a/product.py +++ b/product.py @@ -1,14 +1,21 @@ # # product.py: product identification string # -# Copyright 2003 Red Hat, Inc. +# Copyright (C) 2003 Red Hat, Inc. All rights reserved. # -# This software may be freely redistributed under the terms of the GNU -# library public license. +# 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 +# along with this program. If not, see <http://www.gnu.org/licenses/>. # -# You should have received a copy of the GNU Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. import os diff --git a/raid.py b/raid.py index 8139d33..be97ec9 100644 --- a/raid.py +++ b/raid.py @@ -1,18 +1,25 @@ -#!/usr/bin/python # # raid.py - raid probing control # -# Erik Troan <ewt@xxxxxxxxxx> +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 +# Red Hat, Inc. All rights reserved. # -# Copyright 1999-2007 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. # +# Red Hat Author(s): Erik Troan <ewt@xxxxxxxxxx> +# + """Raid probing control.""" def getRaidLevels(): diff --git a/rescue.py b/rescue.py index 9cb1003..742a66f 100644 --- a/rescue.py +++ b/rescue.py @@ -1,17 +1,23 @@ # # rescue.py - anaconda rescue mode setup # -# Mike Fulbright <msf@xxxxxxxxxx> -# Jeremy Katz <katzj@xxxxxxxxxx> +# Copyright (C) 2001, 2002, 2003, 2004 Red Hat, Inc. All rights reserved. # -# Copyright 2001-2004 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Mike Fulbright <msf@xxxxxxxxxx> +# Jeremy Katz <katzj@xxxxxxxxxx> # import upgrade diff --git a/security.py b/security.py index f11798d..891bc78 100644 --- a/security.py +++ b/security.py @@ -1,16 +1,22 @@ # # security.py - security install data and installation # -# Jeremy Katz <katzj@xxxxxxxxxx> +# Copyright (C) 2004 Red Hat, Inc. All rights reserved. # -# Copyright 2004 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 software may be freely redistributed under the terms of the GNU -# general public license. +# 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 -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Jeremy Katz <katzj@xxxxxxxxxx> # import os, string diff --git a/sortedtransaction.py b/sortedtransaction.py index ee0dceb..986ecd8 100644 --- a/sortedtransaction.py +++ b/sortedtransaction.py @@ -1,4 +1,22 @@ #!/usr/bin/python +# +# sortedtransaction.py +# +# Copyright (C) 2007 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 +# 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 +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# from yum.transactioninfo import TransactionData, TransactionMember, SortableTransactionData from yum.constants import * diff --git a/syslogd.py b/syslogd.py index 1971404..70ed54f 100644 --- a/syslogd.py +++ b/syslogd.py @@ -1,16 +1,22 @@ # # syslogd.py - a simple syslogd implementation and wrapper for launching it # -# Erik Troan <ewt@xxxxxxxxxx> +# Copyright (C) 1999, 2000, 2001 Red Hat, Inc. All rights reserved. # -# Copyright 1999-2001 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Erik Troan <ewt@xxxxxxxxxx> # import sys, os diff --git a/text.py b/text.py index ec27472..246f368 100644 --- a/text.py +++ b/text.py @@ -1,17 +1,24 @@ # # text.py - text mode frontend to anaconda # -# Erik Troan <ewt@xxxxxxxxxx> -# Matt Wilson <msw@xxxxxxxxxx> +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Red Hat, Inc. +# All rights reserved. # -# Copyright 1999-2006 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 software may be freely redistributed under the terms of the GNU -# general public license. +# 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 -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Erik Troan <ewt@xxxxxxxxxx> +# Matt Wilson <msw@xxxxxxxxxx> # from snack import * diff --git a/timer.py b/timer.py index 30e1e10..3da3c82 100644 --- a/timer.py +++ b/timer.py @@ -1,16 +1,22 @@ # # timer.py - generic timing object for installation screens # -# Erik Troan <ewt@xxxxxxxxxx> +# Copyright (C) 2000, 2001 Red Hat, Inc. All rights reserved. # -# Copyright 2000-2001 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Erik Troan <ewt@xxxxxxxxxx> # import time diff --git a/timezone.py b/timezone.py index e38a6b0..c58736c 100644 --- a/timezone.py +++ b/timezone.py @@ -1,14 +1,20 @@ # # timezone.py - timezone install data # -# Copyright 2001 Red Hat, Inc. +# Copyright (C) 2001 Red Hat, Inc. All rights reserved. # -# This software may be freely redistributed under the terms of the GNU -# library public license. +# 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. # -# You should have received a copy of the GNU Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# 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 +# along with this program. If not, see <http://www.gnu.org/licenses/>. # import shutil diff --git a/upgrade.py b/upgrade.py index 9cacf23..3cbaaa0 100644 --- a/upgrade.py +++ b/upgrade.py @@ -1,16 +1,23 @@ # # upgrade.py - Existing install probe and upgrade procedure # -# Matt Wilson <msw@xxxxxxxxxx> +# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Red Hat, Inc. +# All rights reserved. # -# Copyright 2001-2007 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Matt Wilson <msw@xxxxxxxxxx> # import isys diff --git a/users.py b/users.py index b5b8ef2..820dc1f 100644 --- a/users.py +++ b/users.py @@ -1,17 +1,24 @@ # # users.py: Code for creating user accounts and setting the root password # -# Chris Lumens <clumens@xxxxxxxxxx> +# Copyright (C) 2006, 2007 Red Hat, Inc. All rights reserved. # -# Copyright (c) 2006, 2007 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 software may be freely redistributed under the terms of the GNU -# general public license. +# 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 -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# along with this program. If not, see <http://www.gnu.org/licenses/>. # +# Red Hat Author(s): Chris Lumens <clumens@xxxxxxxxxx> +# + import libuser import string import crypt diff --git a/vnc.py b/vnc.py index c25533c..189d108 100644 --- a/vnc.py +++ b/vnc.py @@ -1,16 +1,22 @@ # # vnc.py: VNC related installer functionality # -# Copyright 2004,2007 Red Hat, Inc. +# Copyright (C) 2004, 2007 Red Hat, Inc. All rights reserved. # -# Jeremy Katz <katzj@xxxxxxxxxx> +# 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 software may be freely redistributed under the terms of the GNU -# general public license. +# 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 -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Jeremy Katz <katzj@xxxxxxxxxx> # import os, sys, string diff --git a/whiteout.py b/whiteout.py index 3632b75..b0233c3 100644 --- a/whiteout.py +++ b/whiteout.py @@ -1,7 +1,20 @@ # # whiteout.py - dependency whiteout setup # -# Copyright 2002-2004 Red Hat, Inc. +# Copyright (C) 2002, 2003, 2004 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 +# 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 +# along with this program. If not, see <http://www.gnu.org/licenses/>. # import logging diff --git a/xsetup.py b/xsetup.py index d4ae898..c2d5616 100644 --- a/xsetup.py +++ b/xsetup.py @@ -1,16 +1,22 @@ # # xsetup.py - handles anaconda specific XFree86 needs # -# Michael Fulbright <msf@xxxxxxxxxx> +# Copyright (C) 2002, 2003 Red Hat, Inc. All rights reserved. # -# Copyright 2002,2003 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Michael Fulbright <msf@xxxxxxxxxx> # # diff --git a/yuminstall.py b/yuminstall.py index e2d4cf5..0cb84e1 100644 --- a/yuminstall.py +++ b/yuminstall.py @@ -1,12 +1,20 @@ # -# Copyright (c) 2005-2007 Red Hat, Inc. +# yuminstall.py # -# This software may be freely redistributed under the terms of the GNU -# general public license. +# Copyright (C) 2005, 2006, 2007 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 +# 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 -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# along with this program. If not, see <http://www.gnu.org/licenses/>. # from flags import flags diff --git a/zfcp.py b/zfcp.py index 8a9ae1b..5f7bfa7 100644 --- a/zfcp.py +++ b/zfcp.py @@ -1,16 +1,22 @@ # # zfcp.py - mainframe zfcp configuration install data # -# Karsten Hopp <karsten@xxxxxxxxxx> +# Copyright (C) 2001, 2002, 2003, 2004 Red Hat, Inc. All rights reserved. # -# Copyright 2001-2004 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 software may be freely redistributed under the terms of the GNU -# library public license. +# 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 Library Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Red Hat Author(s): Karsten Hopp <karsten@xxxxxxxxxx> # import string -- 1.5.3.6 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list