]>
git.ipfire.org Git - ipfire-2.x.git/blob - src/pakfire/lib/functions.sh
6fa682ee88e81ea704a1492c41b0bc5fa325fe30
2 ###############################################################################
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2007 Michael Tremer & Christian Schmidt #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
20 ###############################################################################
26 echo "Extracting files..."
27 tar xvf
/opt
/pakfire
/tmp
/files
--preserve --numeric-owner -C /
32 echo "Removing files..."
33 for i
in $
(cat /opt
/pakfire
/tmp
/ROOTFILES
); do
41 /etc
/init.d
/$1 restart
58 log_failure_msg
"Unknown Option: ${1}"
59 return 2 #invalid or excess argument(s)
66 [ -e "/etc/init.d/${1}" ] && \
67 (sleep ${DELAY} && /etc/init.d/${1} start ${BACKGROUND})
72 [ -e "/etc/init.d/${1}" ] && /etc
/init.d
/${1} stop