diff options
author | joeyh <joeyh> | 2006-01-08 04:30:49 +0000 |
---|---|---|
committer | joeyh <joeyh> | 2006-01-08 04:30:49 +0000 |
commit | a526b567bfbb3fd9d0c7332922c5e5f571fd38a2 (patch) | |
tree | 95ecc6142d5d856f42b687d334dacc8ebce97e8e /autoscripts | |
parent | dcdf9deae35b4d456ab3f3fbe6769db64352e136 (diff) | |
download | debhelper-a526b567bfbb3fd9d0c7332922c5e5f571fd38a2.tar.gz |
r1845: add
Diffstat (limited to 'autoscripts')
-rw-r--r-- | autoscripts/postinst-gconf-defaults | 3 | ||||
-rw-r--r-- | autoscripts/postinst-python-support | 3 | ||||
-rw-r--r-- | autoscripts/postrm-gconf-defaults | 3 | ||||
-rw-r--r-- | autoscripts/prerm-python-support | 3 |
4 files changed, 12 insertions, 0 deletions
diff --git a/autoscripts/postinst-gconf-defaults b/autoscripts/postinst-gconf-defaults new file mode 100644 index 00000000..1d84aa40 --- /dev/null +++ b/autoscripts/postinst-gconf-defaults @@ -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 index 00000000..2b60ca10 --- /dev/null +++ b/autoscripts/postinst-python-support @@ -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 index 00000000..46844981 --- /dev/null +++ b/autoscripts/postrm-gconf-defaults @@ -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 index 00000000..c8b62a5a --- /dev/null +++ b/autoscripts/prerm-python-support @@ -0,0 +1,3 @@ +if which update-python-modules >/dev/null 2>&1; then + update-python-modules -c #OPTIONS# #DIRS# +fi |