#!/bin/bash
#define box home path
BOX1_HOME_PATH="~/Ubuntu/freetz-ng/75xx"
BOX2_HOME_PATH="~/Ubuntu/freetz-ng/74xx"
BOX3_HOME_PATH="~/Ubuntu/freetz-ng/30xx"
BOX4_HOME_PATH="~/Ubuntu/freetz-ng/17xx"
BOX5_HOME_PATH="~/Ubuntu/freetz-ng/55xx"
#define image home path
IMAGE_HOME_PATH="~/Ubuntu/freetz-ng/images"
#define addon home path
ADDON_HOME_PATH="~/Ubuntu/freetz-ng/MY_FILES/addon"
# Here you can specify the maximum threads on your CPU
MAX_CPUS=20
#define list of config rename to
CONFIG_RENAME_OPENSSL_1_0_LIST=(
config_openssl_1_0_without_reader_drivers,config
config_openssl_1_0_without_reader_drivers_client,config
)
CONFIG_RENAME_OPENSSL_1_0_LIST_FOR_READER_DRIVERS=(
config_openssl_1_0_for_reader_drivers,config
config_openssl_1_0_for_reader_drivers_client,config
)
CONFIG_RENAME_OPENSSL_1_1_LIST=(
config_openssl_1_1_without_reader_drivers,config
config_openssl_1_1_without_reader_drivers_client,config
)
CONFIG_RENAME_OPENSSL_1_1_LIST_FOR_READER_DRIVERS=(
config_openssl_1_1_for_reader_drivers,config
config_openssl_1_1_for_reader_drivers_client,config
)
#delete images that are older than 10 days
find "$IMAGE_HOME_PATH/" -name "*openssl*" -type f -mtime +10 -delete
#end of config
#start point this shows you how long it took him to create the images
begin=$(date +"%s")