#!/usr/bin/sh #---------------------------------------------------------------------------- # /var/install/deinstall/quota_post - deinstall script # # Creation : 2012-08-12 holbru # Last update: $Id$ # # Copyright (c) 2004-2009 Jens Berger, jberger(at)gmx(dot)net # Copyright (c) 2012-@@YEAR@@ Holger Bruenjes, holgerbruenjes(at)gmx(dot)net # # 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 package name package_name=quota # check for update is given case "${1}" in --update) update=true ;; esac # --------------------------------------------------------------------------- # stop for update only # --------------------------------------------------------------------------- if ${update:-false} then exit 0 fi . /var/install/include/eislib echo mecho --warn 'Please reboot your system to make the changes take effect' echo anykey exit 0 # --------------------------------------------------------------------------- # end # ---------------------------------------------------------------------------