2020-01-26 19:45:26 -04:00
#!/bin/sh
#
# Copyright (c) 2018-2020, Christer Edwards <christer.edwards@gmail.com>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# * Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
. /usr/local/share/bastille/colors.pre.sh
. /usr/local/etc/bastille/bastille.conf
usage( ) {
2020-01-28 17:36:30 -07:00
echo -e " ${ COLOR_RED } Usage: bastille import backup_file. ${ COLOR_RESET } "
2020-01-26 19:45:26 -04:00
exit 1
}
# Handle special-case commands first
case " $1 " in
help| -h| --help)
usage
; ;
esac
if [ $# -gt 1 ] || [ $# -lt 1 ] ; then
usage
fi
TARGET = " ${ 1 } "
shift
error_notify( ) {
# Notify message on error and exit
echo -e " $* " >& 2
exit 1
}
validate_archive( ) {
# Compare checksums on the target archive
2020-04-03 07:56:28 -04:00
# Skip validation for unsupported archives
if [ " ${ FILE_EXT } " != ".tar.gz" ] ; then
if [ -f " ${ bastille_backupsdir } / ${ TARGET } " ] ; then
echo -e " ${ COLOR_GREEN } Validating file: ${ TARGET } ... ${ COLOR_RESET } "
SHA256_DIST = $( cat " ${ bastille_backupsdir } / ${ FILE_TRIM } .sha256 " )
SHA256_FILE = $( sha256 -q " ${ bastille_backupsdir } / ${ TARGET } " )
if [ " ${ SHA256_FILE } " != " ${ SHA256_DIST } " ] ; then
error_notify " ${ COLOR_RED } Failed validation for ${ TARGET } . ${ COLOR_RESET } "
else
echo -e " ${ COLOR_GREEN } File validation successful! ${ COLOR_RESET } "
fi
2020-01-26 19:45:26 -04:00
fi
2020-04-03 07:56:28 -04:00
else
echo -e " ${ COLOR_YELLOW } Warning: Skipping archive validation! ${ COLOR_RESET } "
2020-01-26 19:45:26 -04:00
fi
}
update_zfsmount( ) {
# Update the mountpoint property on the received zfs data stream
2020-02-20 18:06:31 -04:00
OLD_ZFS_MOUNTPOINT = $( zfs get -H mountpoint " ${ bastille_zfs_zpool } / ${ bastille_zfs_prefix } /jails/ ${ TARGET_TRIM } /root " | awk '{print $3}' )
2020-01-26 19:45:26 -04:00
NEW_ZFS_MOUNTPOINT = " ${ bastille_jailsdir } / ${ TARGET_TRIM } /root "
if [ " ${ NEW_ZFS_MOUNTPOINT } " != " ${ OLD_ZFS_MOUNTPOINT } " ] ; then
echo -e " ${ COLOR_GREEN } Updating zfs mountpoint... ${ COLOR_RESET } "
2020-02-20 18:06:31 -04:00
zfs set mountpoint = " ${ bastille_jailsdir } / ${ TARGET_TRIM } /root " " ${ bastille_zfs_zpool } / ${ bastille_zfs_prefix } /jails/ ${ TARGET_TRIM } /root "
2020-01-26 19:45:26 -04:00
fi
2020-02-15 07:57:33 -04:00
# Mount new container ZFS datasets
2020-04-03 07:56:28 -04:00
if ! zfs mount | grep -qw " ${ bastille_zfs_zpool } / ${ bastille_zfs_prefix } /jails/ ${ TARGET_TRIM } $" ; then
2020-02-20 18:06:31 -04:00
zfs mount " ${ bastille_zfs_zpool } / ${ bastille_zfs_prefix } /jails/ ${ TARGET_TRIM } "
2020-02-15 07:57:33 -04:00
fi
2020-04-03 07:56:28 -04:00
if ! zfs mount | grep -qw " ${ bastille_zfs_zpool } / ${ bastille_zfs_prefix } /jails/ ${ TARGET_TRIM } /root $" ; then
2020-02-20 18:06:31 -04:00
zfs mount " ${ bastille_zfs_zpool } / ${ bastille_zfs_prefix } /jails/ ${ TARGET_TRIM } /root "
2020-01-26 19:45:26 -04:00
fi
}
update_jailconf( ) {
# Update jail.conf paths
JAIL_CONFIG = " ${ bastille_jailsdir } / ${ TARGET_TRIM } /jail.conf "
if [ -f " ${ JAIL_CONFIG } " ] ; then
2020-02-20 18:06:31 -04:00
if ! grep -qw " path = ${ bastille_jailsdir } / ${ TARGET_TRIM } /root; " " ${ JAIL_CONFIG } " ; then
2020-01-26 19:45:26 -04:00
echo -e " ${ COLOR_GREEN } Updating jail.conf... ${ COLOR_RESET } "
2020-02-20 18:06:31 -04:00
sed -i '' " s|exec.consolelog = .*;|exec.consolelog = ${ bastille_logsdir } / ${ TARGET_TRIM } _console.log;| " " ${ JAIL_CONFIG } "
sed -i '' " s|path = .*;|path = ${ bastille_jailsdir } / ${ TARGET_TRIM } /root;| " " ${ JAIL_CONFIG } "
sed -i '' " s|mount.fstab = .*;|mount.fstab = ${ bastille_jailsdir } / ${ TARGET_TRIM } /fstab;| " " ${ JAIL_CONFIG } "
2020-01-26 19:45:26 -04:00
fi
fi
}
update_fstab( ) {
# Update fstab .bastille mountpoint on thin containers only
# Set some variables
FSTAB_CONFIG = " ${ bastille_jailsdir } / ${ TARGET_TRIM } /fstab "
2020-02-20 18:06:31 -04:00
FSTAB_RELEASE = $( grep -owE '([1-9]{2,2})\.[0-9](-RELEASE|-RC[1-2])|([0-9]{1,2}-stable-build-[0-9]{1,3})|(current-build)-([0-9]{1,3})|(current-BUILD-LATEST)|([0-9]{1,2}-stable-BUILD-LATEST)|(current-BUILD-LATEST)' " ${ FSTAB_CONFIG } " )
FSTAB_CURRENT = $( grep -w " .*/releases/.*/jails/ ${ TARGET_TRIM } /root/.bastille " " ${ FSTAB_CONFIG } " )
2020-01-26 19:45:26 -04:00
FSTAB_NEWCONF = " ${ bastille_releasesdir } / ${ FSTAB_RELEASE } ${ bastille_jailsdir } / ${ TARGET_TRIM } /root/.bastille nullfs ro 0 0 "
2020-02-04 13:37:20 -04:00
if [ -n " ${ FSTAB_CURRENT } " ] && [ -n " ${ FSTAB_NEWCONF } " ] ; then
# If both variables are set, compare and update as needed
2020-02-20 18:06:31 -04:00
if ! grep -qw " ${ bastille_releasesdir } / ${ FSTAB_RELEASE } .* ${ bastille_jailsdir } / ${ TARGET_TRIM } /root/.bastille " " ${ FSTAB_CONFIG } " ; then
2020-02-04 13:37:20 -04:00
echo -e " ${ COLOR_GREEN } Updating fstab... ${ COLOR_RESET } "
2020-02-20 18:06:31 -04:00
sed -i '' " s| ${ FSTAB_CURRENT } | ${ FSTAB_NEWCONF } | " " ${ FSTAB_CONFIG } "
2020-02-04 13:37:20 -04:00
fi
2020-01-26 19:45:26 -04:00
fi
}
2020-02-18 19:58:59 -04:00
generate_config( ) {
# Attempt to read previous config file and set required variables accordingly
# If we can't get a valid interface, fallback to lo1 and warn user
2020-04-03 07:56:28 -04:00
echo -e " ${ COLOR_GREEN } Generating jail.conf... ${ COLOR_RESET } "
if [ " ${ FILE_EXT } " = ".zip" ] ; then
# Gather some bits from foreign/iocage config files
JSON_CONFIG = " ${ bastille_jailsdir } / ${ TARGET_TRIM } /config.json "
IPV4_CONFIG = $( grep -wo '\"ip4_addr\": \".*\"' " ${ JSON_CONFIG } " | tr -d '" ' | sed 's/ip4_addr://' )
IPV6_CONFIG = $( grep -wo '\"ip6_addr\": \".*\"' " ${ JSON_CONFIG } " | tr -d '" ' | sed 's/ip6_addr://' )
elif [ " ${ FILE_EXT } " = ".tar.gz" ] ; then
# Gather some bits from foreign/ezjail config files
PROP_CONFIG = " ${ bastille_jailsdir } / ${ TARGET_TRIM } /prop.ezjail- ${ FILE_TRIM } -* "
IPVX_CONFIG = $( grep -wo " jail_ ${ TARGET_TRIM } _ip=.* " ${ PROP_CONFIG } | tr -d '" ' | sed " s/jail_ ${ TARGET_TRIM } _ip=// " )
fi
2020-02-18 19:58:59 -04:00
2020-04-03 07:56:28 -04:00
# If there are multiple IP/NIC let the user configure network
2020-02-18 19:58:59 -04:00
if [ -n " ${ IPV4_CONFIG } " ] ; then
2020-04-03 07:56:28 -04:00
if ! echo " ${ IPV4_CONFIG } " | grep -q '.*,.*' ; then
NETIF_CONFIG = $( echo " ${ IPV4_CONFIG } " | grep '.*|' | sed 's/|.*//g' )
if [ -z " ${ NETIF_CONFIG } " ] ; then
config_netif
fi
IPX_ADDR = "ip4.addr"
IP_CONFIG = " ${ IPV4_CONFIG } "
IP6_MODE = "disable"
fi
2020-02-18 19:58:59 -04:00
elif [ -n " ${ IPV6_CONFIG } " ] ; then
2020-04-03 07:56:28 -04:00
if ! echo " ${ IPV6_CONFIG } " | grep -q '.*,.*' ; then
NETIF_CONFIG = $( echo " ${ IPV6_CONFIG } " | grep '.*|' | sed 's/|.*//g' )
if [ -z " ${ NETIF_CONFIG } " ] ; then
config_netif
fi
IPX_ADDR = "ip6.addr"
IP_CONFIG = " ${ IPV6_CONFIG } "
IP6_MODE = "new"
fi
elif [ -n " ${ IPVX_CONFIG } " ] ; then
if ! echo " ${ IPVX_CONFIG } " | grep -q '.*,.*' ; then
NETIF_CONFIG = $( echo " ${ IPVX_CONFIG } " | grep '.*|' | sed 's/|.*//g' )
if [ -z " ${ NETIF_CONFIG } " ] ; then
config_netif
fi
IPX_ADDR = "ip4.addr"
IP_CONFIG = " ${ IPVX_CONFIG } "
IP6_MODE = "disable"
if echo " ${ IPVX_CONFIG } " | sed 's/.*|//' | grep -Eq '^(([a-fA-F0-9:]+$)|([a-fA-F0-9:]+\/[0-9]{1,3}$))' ; then
IPX_ADDR = "ip6.addr"
IP6_MODE = "new"
fi
fi
2020-02-18 19:58:59 -04:00
fi
2020-04-03 07:56:28 -04:00
# Let the user configure network manually
2020-02-18 19:58:59 -04:00
if [ -z " ${ NETIF_CONFIG } " ] ; then
NETIF_CONFIG = "lo1"
IPX_ADDR = "ip4.addr"
IP_CONFIG = "-"
IP6_MODE = "disable"
2020-04-03 07:56:28 -04:00
echo -e " ${ COLOR_YELLOW } Warning: See 'bastille edit ${ TARGET_TRIM } jail.conf' for manual network configuration ${ COLOR_RESET } "
2020-02-18 19:58:59 -04:00
fi
2020-04-03 07:56:28 -04:00
if [ " ${ FILE_EXT } " = ".tar.gz" ] ; then
CONFIG_RELEASE = $( echo ${ PROP_CONFIG } | grep -o '[0-9]\{2\}\.[0-9]_RELEASE' | sed 's/_/-/g' )
if [ -z " ${ CONFIG_RELEASE } " ] ; then
# Fallback to host version
CONFIG_RELEASE = $( freebsd-version | sed 's/\-[pP].*//' )
fi
mkdir " ${ bastille_jailsdir } / ${ TARGET_TRIM } /root/.bastille "
echo " ${ bastille_releasesdir } / ${ CONFIG_RELEASE } ${ bastille_jailsdir } / ${ TARGET_TRIM } /root/.bastille nullfs ro 0 0 " \
>> " ${ bastille_jailsdir } / ${ TARGET_TRIM } /fstab "
# Work with the symlinks
cd " ${ bastille_jailsdir } / ${ TARGET_TRIM } /root "
update_symlinks
else
# Generate new empty fstab file
touch " ${ bastille_jailsdir } / ${ TARGET_TRIM } /fstab "
fi
2020-02-18 19:58:59 -04:00
# Generate a basic jail configuration file on foreign imports
2020-02-20 18:06:31 -04:00
cat << EOF > "${bastille_jailsdir}/${TARGE T_TRIM} /jail.conf"
2020-02-18 19:58:59 -04:00
${ TARGET_TRIM } {
devfs_ruleset = 4;
enforce_statfs = 2;
exec.clean;
exec.consolelog = ${ bastille_logsdir } /${ TARGET_TRIM } _console.log;
exec.start = '/bin/sh /etc/rc' ;
exec.stop = '/bin/sh /etc/rc.shutdown' ;
host.hostname = ${ TARGET_TRIM } ;
mount.devfs;
mount.fstab = ${ bastille_jailsdir } /${ TARGET_TRIM } /fstab;
path = ${ bastille_jailsdir } /${ TARGET_TRIM } /root;
securelevel = 2;
interface = ${ NETIF_CONFIG } ;
${ IPX_ADDR } = ${ IP_CONFIG } ;
ip6 = ${ IP6_MODE } ;
}
EOF
}
2020-04-03 07:56:28 -04:00
config_netif( ) {
# Get interface from bastille configuration
if [ -n " ${ bastille_jail_interface } " ] ; then
NETIF_CONFIG = " ${ bastille_jail_interface } "
elif [ -n " ${ bastille_jail_external } " ] ; then
NETIF_CONFIG = " ${ bastille_jail_external } "
else
NETIF_CONFIG =
fi
}
update_symlinks( ) {
# Work with the symlinks
SYMLINKS = "bin boot lib libexec rescue sbin usr/bin usr/include usr/lib usr/lib32 usr/libdata usr/libexec usr/ports usr/sbin usr/share usr/src"
if [ -d " ${ bastille_releasesdir } / ${ CONFIG_RELEASE } " ] ; then
# Update old symlinks
echo -e " ${ COLOR_GREEN } Updating symlinks... ${ COLOR_RESET } "
for _link in ${ SYMLINKS } ; do
if [ -L " ${ _link } " ] ; then
ln -sf /.bastille/${ _link } ${ _link }
fi
done
else
error_notify " ${ COLOR_RED } Release must be bootstrapped first, See 'bastille bootstrap'. ${ COLOR_RESET } "
fi
}
2020-01-26 19:45:26 -04:00
jail_import( ) {
# Attempt to import container from file
2020-04-03 07:56:28 -04:00
FILE_TRIM = $( echo " ${ TARGET } " | sed 's/.[txz]\{2,3\}//g;s/.zip//g;s/.tar.gz//g' )
FILE_EXT = $( echo " ${ TARGET } " | sed " s/ ${ FILE_TRIM } //g " )
2020-01-26 19:45:26 -04:00
validate_archive
if [ -d " ${ bastille_jailsdir } " ] ; then
if [ " ${ bastille_zfs_enable } " = "YES" ] ; then
2020-02-20 18:06:31 -04:00
if [ -n " ${ bastille_zfs_zpool } " ] ; then
2020-04-03 07:56:28 -04:00
if [ " ${ FILE_EXT } " = ".xz" ] ; then
2020-01-26 19:45:26 -04:00
# Import from compressed xz on ZFS systems
2020-04-03 07:56:28 -04:00
echo -e " ${ COLOR_GREEN } Importing ' ${ TARGET_TRIM } ' from compressed ${ FILE_EXT } archive. ${ COLOR_RESET } "
2020-01-26 19:45:26 -04:00
echo -e " ${ COLOR_GREEN } Receiving zfs data stream... ${ COLOR_RESET } "
2020-02-20 18:06:31 -04:00
xz ${ bastille_decompress_xz_options } " ${ bastille_backupsdir } / ${ TARGET } " | \
zfs receive -u " ${ bastille_zfs_zpool } / ${ bastille_zfs_prefix } /jails/ ${ TARGET_TRIM } "
2020-01-26 19:45:26 -04:00
# Update ZFS mountpoint property if required
update_zfsmount
2020-04-03 07:56:28 -04:00
elif [ " ${ FILE_EXT } " = ".txz" ] ; then
2020-01-26 19:45:26 -04:00
# Prepare the ZFS environment and restore from existing tar.xz file
2020-04-03 07:56:28 -04:00
echo -e " ${ COLOR_GREEN } Importing ' ${ TARGET_TRIM } ' form ${ FILE_EXT } archive. ${ COLOR_RESET } "
2020-01-26 19:45:26 -04:00
echo -e " ${ COLOR_GREEN } Preparing zfs environment... ${ COLOR_RESET } "
2020-02-20 18:06:31 -04:00
zfs create ${ bastille_zfs_options } " ${ bastille_zfs_zpool } / ${ bastille_zfs_prefix } /jails/ ${ TARGET_TRIM } "
zfs create ${ bastille_zfs_options } -o mountpoint = " ${ bastille_jailsdir } / ${ TARGET_TRIM } /root " \
" ${ bastille_zfs_zpool } / ${ bastille_zfs_prefix } /jails/ ${ TARGET_TRIM } /root "
2020-01-26 19:45:26 -04:00
# Extract required files to the new datasets
echo -e " ${ COLOR_GREEN } Extracting files from ' ${ TARGET } ' archive... ${ COLOR_RESET } "
2020-04-03 07:56:28 -04:00
tar --exclude= 'root' -Jxf " ${ bastille_backupsdir } / ${ TARGET } " --strip-components 1 -C " ${ bastille_jailsdir } / ${ TARGET_TRIM } "
2020-02-20 18:06:31 -04:00
tar -Jxf " ${ bastille_backupsdir } / ${ TARGET } " --strip-components 2 -C " ${ bastille_jailsdir } / ${ TARGET_TRIM } /root " " ${ TARGET_TRIM } /root "
if [ " $? " -ne 0 ] ; then
zfs destroy -r " ${ bastille_zfs_zpool } / ${ bastille_zfs_prefix } /jails/ ${ TARGET_TRIM } "
2020-01-26 19:45:26 -04:00
error_notify " ${ COLOR_RED } Failed to extract files from ' ${ TARGET } ' archive. ${ COLOR_RESET } "
fi
2020-04-03 07:56:28 -04:00
elif [ " ${ FILE_EXT } " = ".zip" ] ; then
# Attempt to import a foreign/iocage container
echo -e " ${ COLOR_GREEN } Importing ' ${ TARGET_TRIM } ' from foreign compressed ${ FILE_EXT } archive. ${ COLOR_RESET } "
2020-02-18 19:58:59 -04:00
# Sane bastille zfs options
ZFS_OPTIONS = $( echo ${ bastille_zfs_options } | sed 's/-o//g' )
# Extract required files from the zip archive
2020-02-20 18:06:31 -04:00
cd " ${ bastille_backupsdir } " && unzip -j " ${ TARGET } "
if [ " $? " -ne 0 ] ; then
2020-02-18 19:58:59 -04:00
error_notify " ${ COLOR_RED } Failed to extract files from ' ${ TARGET } ' archive. ${ COLOR_RESET } "
2020-02-20 18:06:31 -04:00
rm -f " ${ FILE_TRIM } " " ${ FILE_TRIM } _root "
2020-02-18 19:58:59 -04:00
fi
echo -e " ${ COLOR_GREEN } Receiving zfs data stream... ${ COLOR_RESET } "
2020-02-21 11:35:35 -04:00
zfs receive -u " ${ bastille_zfs_zpool } / ${ bastille_zfs_prefix } /jails/ ${ TARGET_TRIM } " < " ${ FILE_TRIM } "
2020-02-20 18:06:31 -04:00
zfs set ${ ZFS_OPTIONS } " ${ bastille_zfs_zpool } / ${ bastille_zfs_prefix } /jails/ ${ TARGET_TRIM } "
2020-04-03 07:56:28 -04:00
zfs receive -u " ${ bastille_zfs_zpool } / ${ bastille_zfs_prefix } /jails/ ${ TARGET_TRIM } /root " < " ${ FILE_TRIM } _root "
2020-02-18 19:58:59 -04:00
# Update ZFS mountpoint property if required
update_zfsmount
# Keep old configuration files for user reference
if [ -f " ${ bastille_jailsdir } / ${ TARGET_TRIM } /fstab " ] ; then
2020-02-20 18:06:31 -04:00
mv " ${ bastille_jailsdir } / ${ TARGET_TRIM } /fstab " " ${ bastille_jailsdir } / ${ TARGET_TRIM } /fstab.old "
2020-02-18 19:58:59 -04:00
fi
# Cleanup unwanted files
2020-02-20 18:06:31 -04:00
rm -f " ${ FILE_TRIM } " " ${ FILE_TRIM } _root "
2020-02-18 19:58:59 -04:00
# Generate fstab and jail.conf files
generate_config
2020-04-03 07:56:28 -04:00
elif [ " ${ FILE_EXT } " = ".tar.gz" ] ; then
# Attempt to import a foreign/ezjail container
# Prepare the ZFS environment and restore from existing tar.gz file
echo -e " ${ COLOR_GREEN } Importing ' ${ TARGET_TRIM } ' from foreign compressed ${ FILE_EXT } archive. ${ COLOR_RESET } "
echo -e " ${ COLOR_GREEN } Preparing zfs environment... ${ COLOR_RESET } "
zfs create ${ bastille_zfs_options } " ${ bastille_zfs_zpool } / ${ bastille_zfs_prefix } /jails/ ${ TARGET_TRIM } "
zfs create ${ bastille_zfs_options } -o mountpoint = " ${ bastille_jailsdir } / ${ TARGET_TRIM } /root " \
" ${ bastille_zfs_zpool } / ${ bastille_zfs_prefix } /jails/ ${ TARGET_TRIM } /root "
# Extract required files to the new datasets
echo -e " ${ COLOR_GREEN } Extracting files from ' ${ TARGET } ' archive... ${ COLOR_RESET } "
tar --exclude= 'ezjail/' -xf " ${ bastille_backupsdir } / ${ TARGET } " -C " ${ bastille_jailsdir } / ${ TARGET_TRIM } "
tar -xf " ${ bastille_backupsdir } / ${ TARGET } " --strip-components 1 -C " ${ bastille_jailsdir } / ${ TARGET_TRIM } /root "
if [ " $? " -ne 0 ] ; then
zfs destroy -r " ${ bastille_zfs_zpool } / ${ bastille_zfs_prefix } /jails/ ${ TARGET_TRIM } "
error_notify " ${ COLOR_RED } Failed to extract files from ' ${ TARGET } ' archive. ${ COLOR_RESET } "
else
generate_config
fi
2020-01-26 19:45:26 -04:00
else
error_notify " ${ COLOR_RED } Unknown archive format. ${ COLOR_RESET } "
fi
fi
else
2020-04-03 07:56:28 -04:00
# Import from standard tar.xz/.tar.gz archives on UFS systems
if [ " ${ FILE_EXT } " = ".txz" ] ; then
2020-02-18 19:58:59 -04:00
echo -e " ${ COLOR_GREEN } Extracting files from ' ${ TARGET } ' archive... ${ COLOR_RESET } "
2020-02-20 18:06:31 -04:00
tar -Jxf " ${ bastille_backupsdir } / ${ TARGET } " -C " ${ bastille_jailsdir } "
2020-04-03 07:56:28 -04:00
elif [ " ${ FILE_EXT } " = ".tar.gz" ] ; then
# Attempt to import/configure foreign container
echo -e " ${ COLOR_GREEN } Extracting files from ' ${ TARGET } ' archive... ${ COLOR_RESET } "
mkdir " ${ bastille_jailsdir } / ${ TARGET_TRIM } "
tar -xf " ${ bastille_backupsdir } / ${ TARGET } " -C " ${ bastille_jailsdir } / ${ TARGET_TRIM } "
mv " ${ bastille_jailsdir } / ${ TARGET_TRIM } /ezjail " " ${ bastille_jailsdir } / ${ TARGET_TRIM } /root "
generate_config
2020-02-18 19:58:59 -04:00
else
error_notify " ${ COLOR_RED } Unsupported archive format. ${ COLOR_RESET } "
fi
2020-01-26 19:45:26 -04:00
fi
2020-02-20 18:06:31 -04:00
if [ " $? " -ne 0 ] ; then
2020-01-26 19:45:26 -04:00
error_notify " ${ COLOR_RED } Failed to import from ' ${ TARGET } ' archive. ${ COLOR_RESET } "
else
# Update the jail.conf and fstab if required
# This is required on foreign imports only
update_jailconf
update_fstab
echo -e " ${ COLOR_GREEN } Container ' ${ TARGET_TRIM } ' imported successfully. ${ COLOR_RESET } "
exit 0
fi
else
error_notify " ${ COLOR_RED } Jails directory/dataset does not exist, See 'bastille bootstrap'. ${ COLOR_RESET } "
fi
}
# Check if backups directory/dataset exist
if [ ! -d " ${ bastille_backupsdir } " ] ; then
error_notify " ${ COLOR_RED } Backups directory/dataset does not exist, See 'bastille bootstrap'. ${ COLOR_RESET } "
fi
2020-01-28 18:57:51 -04:00
# Check if archive exist then trim archive name
2020-04-03 07:56:28 -04:00
if ls " ${ bastille_backupsdir } " | awk " /^ ${ TARGET } $/ " >/dev/null; then
TARGET_TRIM = $( echo " ${ TARGET } " | sed "s/_[0-9]*-[0-9]*-[0-9]*-[0-9]*.[txz]\{2,3\}//g;s/_[0-9]*-[0-9]*-[0-9]*.zip//g;s/-[0-9]\{12\}.[0-9]\{2\}.tar.gz//g" )
2020-01-28 18:57:51 -04:00
else
error_notify " ${ COLOR_RED } Archive ' ${ TARGET } ' not found. ${ COLOR_RESET } "
fi
2020-01-26 19:45:26 -04:00
# Check if a running jail matches name or already exist
if [ -n " $( jls name | awk " /^ ${ TARGET_TRIM } $/ " ) " ] ; then
error_notify " ${ COLOR_RED } A running jail matches name. ${ COLOR_RESET } "
elif [ -d " ${ bastille_jailsdir } / ${ TARGET_TRIM } " ] ; then
error_notify " ${ COLOR_RED } Container: ${ TARGET_TRIM } already exist. ${ COLOR_RESET } "
fi
jail_import