]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/pakfire/lib/functions.sh
Korrekturen damit der Build wieder laeuft
[people/pmueller/ipfire-2.x.git] / src / pakfire / lib / functions.sh
CommitLineData
cde0e116 1#!/bin/bash
70df8302
MT
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
6# #
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. #
11# #
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. #
16# #
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/>. #
19# #
20###############################################################################
cde0e116 21
c3bbdb21
MT
22. /etc/sysconfig/rc
23. $rc_functions
24
cde0e116
MT
25extract_files() {
26 echo "Extracting files..."
0b2ebeac 27 tar xvf /opt/pakfire/tmp/files --preserve --numeric-owner -C /
7d3af7f7 28 echo "...Finished."
cde0e116 29}
fe7fe395 30
c3bbdb21
MT
31remove_files() {
32 echo "Removing files..."
33 for i in $(cat /opt/pakfire/tmp/ROOTFILES); do
34 rm -rfv ${i}
35 done
fe7fe395
MT
36 echo "...Finished."
37}
38
5ad5a6bc
MT
39make_backup(){
40 [ -e "/var/ipfire/backup/addons/include/${1}" ] && \
41 ( echo "Creating Backup..."
42 /usr/local/bin/backupctrl addonbackup ${1}
43 echo "...Finished." )
44}
45
46restore_backup(){
47 [ -e "/var/ipfire/backup/addons/backup/${1}" ] && \
48 ( echo "Restoring Backup..." && \
49 /usr/local/bin/backupctrl restoreaddon ${1} && \
50 echo "...Finished." )
51}
52
fe7fe395
MT
53restart_service() {
54
55 /etc/init.d/$1 restart
56
57}
c3bbdb21
MT
58
59start_service() {
60 DELAY=0
61 while true
62 case "${1}" in
63 --delay|-d)
64 DELAY=${2}
65 shift 2
66 ;;
67 --background|-b)
68 BACKGROUND="&"
69 shift
70 ;;
71 -*)
72 log_failure_msg "Unknown Option: ${1}"
73 return 2 #invalid or excess argument(s)
74 ;;
75 *)
76 break
77 ;;
78 esac
79
80 [ -e "/etc/init.d/${1}" ] && \
81 (sleep ${DELAY} && /etc/init.d/${1} start ${BACKGROUND})
82}
83
84stop_service() {
85
86 [ -e "/etc/init.d/${1}" ] && /etc/init.d/${1} stop
87
88}