Revision 396a2796
Added by Jim Pingle about 8 years ago
tools/installer/recover_configxml.sh | ||
---|---|---|
1 | 1 |
#!/bin/sh |
2 |
#-
|
|
2 |
# part of pfSense (https://www.pfsense.org)
|
|
3 | 3 |
# Copyright (c) 2017 Rubicon Communications, LLC |
4 | 4 |
# All rights reserved. |
5 | 5 |
# |
6 |
# Redistribution and use in source and binary forms, with or without |
|
7 |
# modification, are permitted provided that the following conditions |
|
8 |
# are met: |
|
9 |
# 1. Redistributions of source code must retain the above copyright |
|
10 |
# notice, this list of conditions and the following disclaimer. |
|
11 |
# 2. Redistributions in binary form must reproduce the above copyright |
|
12 |
# notice, this list of conditions and the following disclaimer in the |
|
13 |
# documentation and/or other materials provided with the distribution. |
|
6 |
# Licensed under the Apache License, Version 2.0 (the "License"); |
|
7 |
# you may not use this file except in compliance with the License. |
|
8 |
# You may obtain a copy of the License at |
|
14 | 9 |
# |
15 |
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND |
|
16 |
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
|
17 |
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
|
18 |
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
|
19 |
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
|
20 |
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
|
21 |
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
|
22 |
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
|
23 |
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
|
24 |
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
|
25 |
# SUCH DAMAGE. |
|
10 |
# http://www.apache.org/licenses/LICENSE-2.0 |
|
11 |
# |
|
12 |
# Unless required by applicable law or agreed to in writing, software |
|
13 |
# distributed under the License is distributed on an "AS IS" BASIS, |
|
14 |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
15 |
# See the License for the specific language governing permissions and |
|
16 |
# limitations under the License. |
|
26 | 17 |
# |
27 | 18 |
# $FreeBSD$ |
28 | 19 |
|
29 | 20 |
# Recover config.xml |
30 |
# |
|
31 |
# in freebsd-src repo, usr.sbin/bsdinstall/scripts/auto |
|
32 |
# - Add line to call file which will copy recovered config.xml |
|
33 | 21 |
|
34 | 22 |
# Create a mount point and a place to store the recovered configuration |
35 | 23 |
recovery_mount=/tmp/mnt_recovery |
Also available in: Unified diff
Fix license