diff options
author | joey <joey> | 1999-08-17 04:20:25 +0000 |
---|---|---|
committer | joey <joey> | 1999-08-17 04:20:25 +0000 |
commit | ecff4e2941eefd33c368be7a0ee372406a6d0e94 (patch) | |
tree | 708fb3b1166f14d0c5a1ac89a024de71af289671 /autoscripts | |
parent | 938b66ee19e113785e6655b1c3e73e9003e6464c (diff) | |
download | debhelper-ecff4e2941eefd33c368be7a0ee372406a6d0e94.tar.gz |
r3: Initial revision
Diffstat (limited to 'autoscripts')
-rw-r--r-- | autoscripts/postinst-menu | 1 | ||||
-rw-r--r-- | autoscripts/postinst-menu-method | 5 | ||||
-rw-r--r-- | autoscripts/postrm-menu-method | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/autoscripts/postinst-menu b/autoscripts/postinst-menu new file mode 100644 index 00000000..a73a1692 --- /dev/null +++ b/autoscripts/postinst-menu @@ -0,0 +1 @@ +if [ -x /usr/bin/update-menus ] ; then update-menus ; fi diff --git a/autoscripts/postinst-menu-method b/autoscripts/postinst-menu-method new file mode 100644 index 00000000..0ea7959b --- /dev/null +++ b/autoscripts/postinst-menu-method @@ -0,0 +1,5 @@ +inst=/etc/menu-methods/#PACKAGE# +if [ -x /usr/bin/update-menus -a -f $inst -a -x /usr/sbin/install-menu ] ; then + chmod a+x $inst + update-menus +fi diff --git a/autoscripts/postrm-menu-method b/autoscripts/postrm-menu-method new file mode 100644 index 00000000..3e63f2f4 --- /dev/null +++ b/autoscripts/postrm-menu-method @@ -0,0 +1,3 @@ +inst=/etc/menu-methods/#PACKAGE# +if [ "$1" = "remove" -a -f "$inst" ]; then chmod a-x $inst ; fi +if [ -x /usr/bin/update-menus ] ; then update-menus; fi |