summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorDavid Kalnischkies <david@kalnischkies.de>2014-01-24 15:18:14 +0100
committerDavid Kalnischkies <david@kalnischkies.de>2014-09-27 00:12:13 +0200
commit5b55915a9beca06c9993285aee9da9f4ac3bccc4 (patch)
tree776d2d14617df1a1ac40bbd59c41aab76ec7606a /debian
parent3e032cda2d3558c076a559697e664546da56c243 (diff)
rename postrm to apt.postrm
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
Diffstat (limited to 'debian')
-rwxr-xr-x[-rw-r--r--]debian/apt.postinst0
-rwxr-xr-xdebian/apt.postrm (renamed from debian/postrm)0
-rwxr-xr-xdebian/postinst39
3 files changed, 0 insertions, 39 deletions
diff --git a/debian/apt.postinst b/debian/apt.postinst
index a538abde9..a538abde9 100644..100755
--- a/debian/apt.postinst
+++ b/debian/apt.postinst
diff --git a/debian/postrm b/debian/apt.postrm
index ae1e18d33..ae1e18d33 100755
--- a/debian/postrm
+++ b/debian/apt.postrm
diff --git a/debian/postinst b/debian/postinst
deleted file mode 100755
index 1588f5241..000000000
--- a/debian/postinst
+++ /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