Revision aed6fc72
Added by Ermal LUÇI about 14 years ago
etc/rc.start_packages | ||
---|---|---|
1 |
#!/bin/sh |
|
1 |
#!/usr/local/bin/php -f |
|
2 |
<?php |
|
3 |
/* $Id$ */ |
|
4 |
/* |
|
5 |
rc.start_packages |
|
6 |
part of pfSense (http://www.pfSense.com) |
|
7 |
Copyright (C) 2004 Scott Ullrich |
|
8 |
All rights reserved. |
|
2 | 9 |
|
3 |
# Set our operating platform
|
|
4 |
PLATFORM=`cat /etc/platform`
|
|
10 |
Redistribution and use in source and binary forms, with or without
|
|
11 |
modification, are permitted provided that the following conditions are met:
|
|
5 | 12 |
|
6 |
if [ ! "$PLATFORM" = "cdrom" ]; then |
|
13 |
1. Redistributions of source code must retain the above copyright notice, |
|
14 |
this list of conditions and the following disclaimer. |
|
7 | 15 |
|
8 |
/etc/rc.packages 2>/dev/null |
|
16 |
2. Redistributions in binary form must reproduce the above copyright |
|
17 |
notice, this list of conditions and the following disclaimer in the |
|
18 |
documentation and/or other materials provided with the distribution. |
|
9 | 19 |
|
10 |
echo "Executing rc.d items... " |
|
11 |
for FILE in /usr/local/etc/rc.d/*.sh; do |
|
12 |
echo -n " Starting ${FILE}..." |
|
13 |
sh $FILE start >>/tmp/bootup_messages 2>&1 & |
|
14 |
echo "done." |
|
15 |
done |
|
16 |
fi |
|
20 |
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, |
|
21 |
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY |
|
22 |
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
|
23 |
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, |
|
24 |
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
|
25 |
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
|
26 |
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
|
27 |
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
|
28 |
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
|
29 |
POSSIBILITY OF SUCH DAMAGE. |
|
30 |
*/ |
|
17 | 31 |
|
32 |
require_once("config.inc"); |
|
33 |
require_once("functions.inc"); |
|
34 |
require_once("filter.inc"); |
|
35 |
require_once("shaper.inc"); |
|
36 |
require_once("captiveportal.inc"); |
|
37 |
require_once("pkg-utils.inc"); |
|
38 |
require_once("pfsense-utils.inc"); |
|
39 |
|
|
40 |
if (!is_array($config['installedpackages']['package'])) |
|
41 |
return; |
|
42 |
|
|
43 |
log_error("Starting all packages."); |
|
44 |
|
|
45 |
foreach($config['installedpackages']['package'] as $package) { |
|
46 |
stop_service($package['name']); |
|
47 |
start_service($package['name']); |
|
48 |
} |
|
49 |
|
|
50 |
?> |
Also available in: Unified diff
Ticket #1534. Change rc.start_packages and rc.stop_packages to php scripts so they do a proper job at start/stop packages, rather than assume every package has a .sh script which is not true. It mostly reuses code from rc.packages which is not used anywhere as of now!