summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Shuler <michael@pbandjelly.org>2013-08-30 15:28:20 -0500
committerMichael Shuler <michael@pbandjelly.org>2013-08-30 15:28:20 -0500
commitf3cdf53c86d9b0e3c5f7bf147cd85e49d327c470 (patch)
tree02373169d53496d82148db8308c9324431c6d865
parent254c0df2b6ac1836bb9e79a125c54835a35b7815 (diff)
downloadca-certificates-f3cdf53c86d9b0e3c5f7bf147cd85e49d327c470.tar.gz
Strip comments & license from ca-certificates-local postrm & copyright
-rw-r--r--examples/ca-certificates-local/debian/copyright24
-rw-r--r--examples/ca-certificates-local/debian/postrm20
2 files changed, 1 insertions, 43 deletions
diff --git a/examples/ca-certificates-local/debian/copyright b/examples/ca-certificates-local/debian/copyright
index 5ffaab9..33ce0fc 100644
--- a/examples/ca-certificates-local/debian/copyright
+++ b/examples/ca-certificates-local/debian/copyright
@@ -2,27 +2,5 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Files: *
Copyright: 2013 System Administrator <root@localhost.localdomain>
-License: MIT
+License: ...
-Files: debian/*
-Copyright: 2013 System Administrator <root@localhost.localdomain>
-License: MIT
-
-License: MIT
- Permission is hereby granted, free of charge, to any person obtaining a
- copy of this software and associated documentation files (the "Software"),
- to deal in the Software without restriction, including without limitation
- the rights to use, copy, modify, merge, publish, distribute, sublicense,
- and/or sell copies of the Software, and to permit persons to whom the
- Software is furnished to do so, subject to the following conditions:
- .
- The above copyright notice and this permission notice shall be included
- in all copies or substantial portions of the Software.
- .
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/examples/ca-certificates-local/debian/postrm b/examples/ca-certificates-local/debian/postrm
index beaf187..658e655 100644
--- a/examples/ca-certificates-local/debian/postrm
+++ b/examples/ca-certificates-local/debian/postrm
@@ -1,24 +1,7 @@
#!/bin/sh
-# postrm script for ca-certificates-local
-#
-# see: dh_installdeb(1)
set -e
-# summary of how this script can be called:
-# * <postrm> `remove'
-# * <postrm> `purge'
-# * <old-postrm> `upgrade' <new-version>
-# * <new-postrm> `failed-upgrade' <old-version>
-# * <new-postrm> `abort-install'
-# * <new-postrm> `abort-install' <old-version>
-# * <new-postrm> `abort-upgrade' <old-version>
-# * <disappearer's-postrm> `disappear' <overwriter>
-# <overwriter-version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
case "$1" in
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
# recreate the /usr/local/share/ca-certificates directory, since we are
@@ -38,9 +21,6 @@ case "$1" in
;;
esac
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
#DEBHELPER#
exit 0