diff options
author | 2004-09-02 20:09:53 +0000 | |
---|---|---|
committer | 2004-09-02 20:09:53 +0000 | |
commit | fd48d646949ac23932fd701422dad868b34de143 (patch) | |
tree | 309432594efb68cfff37f3c091f5d0531316b280 /www-apps/rt/files | |
parent | insinto -> exinto. Thanks Sven. (Manifest recommit) (diff) | |
download | gentoo-2-fd48d646949ac23932fd701422dad868b34de143.tar.gz gentoo-2-fd48d646949ac23932fd701422dad868b34de143.tar.bz2 gentoo-2-fd48d646949ac23932fd701422dad868b34de143.zip |
reconfig hook now cleans up after itself
Diffstat (limited to 'www-apps/rt/files')
-rw-r--r-- | www-apps/rt/files/reconfig | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/www-apps/rt/files/reconfig b/www-apps/rt/files/reconfig index 0261199a37b2..7f831600df69 100644 --- a/www-apps/rt/files/reconfig +++ b/www-apps/rt/files/reconfig @@ -19,6 +19,7 @@ if [ $1 = "start" -o $1 = "install" ]; then echo "Don't forget to read the README for more details" ls -else - echo $1 +elif [ $1 = "clean" ]; then + rm -f /usr/bin/standalone_httpd /usr/bin/rt-crontool /usr/bin/webmux.pl /usr/lib/RT.pm /usr/bin/mason_handler.scgi /usr/bin/rt-mailgate + rm -rf /var/rt fi |