]> git.donarmstrong.com Git - debhelper.git/commitdiff
r1845: add
authorjoeyh <joeyh>
Sun, 8 Jan 2006 04:30:49 +0000 (04:30 +0000)
committerjoeyh <joeyh>
Sun, 8 Jan 2006 04:30:49 +0000 (04:30 +0000)
autoscripts/postinst-gconf-defaults [new file with mode: 0644]
autoscripts/postinst-python-support [new file with mode: 0644]
autoscripts/postrm-gconf-defaults [new file with mode: 0644]
autoscripts/prerm-python-support [new file with mode: 0644]

diff --git a/autoscripts/postinst-gconf-defaults b/autoscripts/postinst-gconf-defaults
new file mode 100644 (file)
index 0000000..1d84aa4
--- /dev/null
@@ -0,0 +1,3 @@
+if [ "$1" = "configure" ] && which update-gconf-defaults >/dev/null 2>&1; then
+       update-gconf-defaults
+fi
diff --git a/autoscripts/postinst-python-support b/autoscripts/postinst-python-support
new file mode 100644 (file)
index 0000000..2b60ca1
--- /dev/null
@@ -0,0 +1,3 @@
+if [ "$1" = "configure" ] && which update-python-modules >/dev/null 2>&1; then
+       update-python-modules #OPTIONS# #DIRS#
+fi
diff --git a/autoscripts/postrm-gconf-defaults b/autoscripts/postrm-gconf-defaults
new file mode 100644 (file)
index 0000000..4684498
--- /dev/null
@@ -0,0 +1,3 @@
+if which update-gconf-defaults >/dev/null 2>&1; then
+       update-gconf-defaults
+fi
diff --git a/autoscripts/prerm-python-support b/autoscripts/prerm-python-support
new file mode 100644 (file)
index 0000000..c8b62a5
--- /dev/null
@@ -0,0 +1,3 @@
+if which update-python-modules >/dev/null 2>&1; then
+       update-python-modules -c #OPTIONS# #DIRS#
+fi