]> git.saurik.com Git - apt.git/commitdiff
rename postrm to apt.postrm
authorDavid Kalnischkies <david@kalnischkies.de>
Fri, 24 Jan 2014 14:18:14 +0000 (15:18 +0100)
committerDavid Kalnischkies <david@kalnischkies.de>
Fri, 26 Sep 2014 22:12:13 +0000 (00:12 +0200)
It helps in identifying its affiliation.
Also removes the old postinst which was hidden by apt.postinst for a
long time now and would just install a sources.list in edgecases which
is probably not a good idea (e.g. on my system /etc/apt/sources.list
does not exist). It is better done by the installer of the distro.

Git-Dch: Ignore

debian/apt.postinst [changed mode: 0644->0755]
debian/apt.postrm [new file with mode: 0755]
debian/postinst [deleted file]
debian/postrm [deleted file]

old mode 100644 (file)
new mode 100755 (executable)
diff --git a/debian/apt.postrm b/debian/apt.postrm
new file mode 100755 (executable)
index 0000000..ae1e18d
--- /dev/null
@@ -0,0 +1,22 @@
+#! /bin/sh
+
+# apt postrm
+# Copyright (C) 1998, Ben Gertzfield <che@debian.org>
+
+# 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.
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+       remove)
+               ;;
+       purge)
+               rm -rf /var/cache/apt
+               rm -rf /var/lib/apt
+esac
+
diff --git a/debian/postinst b/debian/postinst
deleted file mode 100755 (executable)
index 1588f52..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-#! /bin/sh
-
-# apt postinst, based liberally on James Troup's gpm postinst
-# Copyright (C) 1998, Ben Gertzfield <che@debian.org>
-
-# 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.
-
-set -e
-
-create_apt_conf ()
-{
- EXAMPLE_SOURCE=/usr/share/doc/apt/examples/sources.list
- if [ -f $EXAMPLE_SOURCE ]; then
-     cp $EXAMPLE_SOURCE /etc/apt/sources.list
- fi
-}
-check_apt_conf ()
-{
- true
- # this is for future expansion
-}
-
-#DEBHELPER#
-
-case "$1" in
-       configure)
-              #
-               # If there is no /etc/apt/sources.list then create a default
-              #
-              if [ ! -f /etc/apt/sources.list ]; then
-                create_apt_conf
-              else
-                check_apt_conf
-              fi
-esac
diff --git a/debian/postrm b/debian/postrm
deleted file mode 100755 (executable)
index ae1e18d..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#! /bin/sh
-
-# apt postrm
-# Copyright (C) 1998, Ben Gertzfield <che@debian.org>
-
-# 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.
-
-set -e
-
-#DEBHELPER#
-
-case "$1" in
-       remove)
-               ;;
-       purge)
-               rm -rf /var/cache/apt
-               rm -rf /var/lib/apt
-esac
-