Skip to content

Commit

Permalink
Add the license to these files.
Browse files Browse the repository at this point in the history
They are assumed to be GPLv2 as all of pulledpork is. This addresses issue #234
  • Loading branch information
shirkdog committed Nov 10, 2016
1 parent a398355 commit b950435
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
3 changes: 3 additions & 0 deletions contrib/README.CONTRIB
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
This file is essentially a manifest of the contrib directory.

Unless a license is specified, anything in this contrib directory is governed
by the GPLv2 license.

oink-conv.pl - tool that converts oinkmaster config files to pulledpork config files
* Author: Russell Fulton
18 changes: 15 additions & 3 deletions contrib/oink-conv.pl
Original file line number Diff line number Diff line change
@@ -1,14 +1,26 @@
#! /usr/bin/perl -w

# simple script to convert oinkmaster conf files to the files that PulledPork understands...

# non comment lines other than disablesid, enablesid or modifysid go into pp.conf

# I've used this successfully on a couple of large oinkmaster.conf files

# as always ymmv. - Contributed by Russell Fulton

# usage: perl oink-conv.pl oinkmaster.conf
#
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.


open(DIS, ">disabled.conf") || die "failed to open disabled file";
open(EN, ">enabled.conf") || die "failed to open enabled file";
Expand Down

0 comments on commit b950435

Please sign in to comment.