diff options
author | V.Krishn <vkrishn4@gmail.com> | 2015-02-25 23:51:55 +0530 |
---|---|---|
committer | V.Krishn <vkrishn4@gmail.com> | 2015-02-25 23:51:55 +0530 |
commit | 4de6473870198b14e225bf6f666ef0f1f921f6ed (patch) | |
tree | 70176dfea73526ccace880ecc61019376d719c3d | |
parent | cf21c6ead3ad17dfb89c54ba3e8246618478a184 (diff) | |
download | scripts-4de6473870198b14e225bf6f666ef0f1f921f6ed.tar.bz2 |
Minor clean, Add license headers
-rw-r--r-- | debian/wheezy-db/01-prime-sql-file.sh | 22 | ||||
-rw-r--r-- | debian/wheezy-db/03-convert-to-sql.sh | 22 | ||||
-rw-r--r-- | debian/wheezy-db/mkdb.sh | 21 |
3 files changed, 65 insertions, 0 deletions
diff --git a/debian/wheezy-db/01-prime-sql-file.sh b/debian/wheezy-db/01-prime-sql-file.sh index 86e37de..b0bedd8 100644 --- a/debian/wheezy-db/01-prime-sql-file.sh +++ b/debian/wheezy-db/01-prime-sql-file.sh @@ -1,4 +1,26 @@ #!/bin/bash +## +# 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/>. +# +# @category Bash, Sed +# @author V.Krishn <vkrishn4@gmail.com> +# @copyright Copyright (c) 2015 V.Krishn <vkrishn4@gmail.com> +# @license GPL +# @link http://github.com/insteps/scripts +# +## + # NOTE: # make sure the INFILE has 2 new lines at the end # INFILE = eg. <path/to>/ftp.de.debian.org_debian_dists_stable_main_binary-i386_Packages diff --git a/debian/wheezy-db/03-convert-to-sql.sh b/debian/wheezy-db/03-convert-to-sql.sh index 700c9a3..2cf08b8 100644 --- a/debian/wheezy-db/03-convert-to-sql.sh +++ b/debian/wheezy-db/03-convert-to-sql.sh @@ -1,4 +1,26 @@ #!/bin/bash +## +# 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/>. +# +# @category Bash, Sed +# @author V.Krishn <vkrishn4@gmail.com> +# @copyright Copyright (c) 2015 V.Krishn <vkrishn4@gmail.com> +# @license GPL +# @link http://github.com/insteps/scripts +# +## + # NOTE: # 1. make sure the INFILE has 2 new lines at the end # INFILE = /tmp/ftp.de.debian.org_debian_dists_stable_main_binary-i386_Packages.sql diff --git a/debian/wheezy-db/mkdb.sh b/debian/wheezy-db/mkdb.sh index 5124f63..639d93c 100644 --- a/debian/wheezy-db/mkdb.sh +++ b/debian/wheezy-db/mkdb.sh @@ -1,4 +1,25 @@ #!/bin/bash +## +# 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/>. +# +# @category Bash +# @author V.Krishn <vkrishn4@gmail.com> +# @copyright Copyright (c) 2015 V.Krishn <vkrishn4@gmail.com> +# @license GPL +# @link http://github.com/insteps/scripts +# +## _TABLENAME='wheezy_700_i386' |