Configuration Files Clause Samples
POPULAR SAMPLE Copied 1 times
Configuration Files. The customer undertakes to provide a configuration backup that enables software recovery.
Configuration Files. End User is responsible to maintain a backup of the configuration that can be used to restore the device.
Configuration Files. Customer agrees to maintain a backup of the configuration that can be used to restore the Hardware.
Configuration Files. The Shadow Builder is using XML configuration files to locate the TFA plugins folder currently only one folder can be provided. By default the plugin folder is located in the folder /tfa- plugins/ More information regarding the different attributes and node fo the XML configuration can be found here: res/README.md .
Configuration Files. 6.1.1 Supervisor configuration file supervisor.coapclient.conf: unix_http_server] file=/tmp/supervisor.sock ; (the path to the socket file) [supervisord] logfile=/tmp/supervisord.log ; (main log file;default $CWD/supervisord.log) logfile_maxbytes=50MB ; (max main logfile bytes b4 rotation;default 50MB) logfile_backups=10 ; (num of main logfile rotation backups;default 10) loglevel=info ; (log level;default info; others: debug,warn,trace) pidfile=/tmp/▇▇▇▇▇▇▇▇▇▇▇.▇▇▇ ; (supervisord pidfile;default ▇▇▇▇▇▇▇▇▇▇▇.▇▇▇) nodaemon=false ; (start in foreground if true;default false) minfds=1024 ; (min. avail startup file descriptors;default 1024) minprocs=200 ; (min. avail process descriptors;default 200) [rpcinterface:supervisor] supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface [supervisorctl] serverurl=unix:///tmp/supervisor.sock ; use a unix:// URL for a unix socket [program:tlctl] command = sh -c "python3.6 -m tlctl" autorestart=false stopsignal=INT stopasgroup=true loglevel=debug redirect_stderr=true stdout_logfile = /var/log/tlctl-stdout.log stdout_logfile_maxbytes = 10MB stdout_logfile_backups = 5 environment= FINTEROP_PERF_MODULE_NAME="tlctl", FINTEROP_PERF_SET="impctl,coapclient,pmctl" [program:pmctl] command = sh -c "python3.6 -m pmctl" autorestart=false stopsignal=INT stopasgroup=true loglevel=debug redirect_stderr=true stdout_logfile = /var/log/pmctl-stdout.log stdout_logfile_maxbytes = 10MB stdout_logfile_backups = 5 environment= FINTEROP_PERF_MODULE_NAME="pmctl" [program:impctl] command = sh -c "python3.6 -m impctl" autorestart=false stopsignal=INT stopasgroup=true loglevel=debug redirect_stderr=true stdout_logfile = /var/log/impctl-stdout.log stdout_logfile_maxbytes = 10MB stdout_logfile_backups = 5 environment= FINTEROP_PERF_MODULE_NAME="impctl" [program:coapclient] command = sh -c "python3.6 -m coapclient" autorestart=false stopsignal=INT stopasgroup=true loglevel=debug redirect_stderr=true stdout_logfile = /var/log/coapclient-stdout.log stdout_logfile_maxbytes = 10MB stdout_logfile_backups = 5 environment= FINTEROP_PERF_MODULE_NAME="coapclient"
6.1.2 Dockerfile Dockerfile.coapclient: FROM ubuntu:16.04 MAINTAINER ▇▇▇▇▇▇@▇▇▇▇▇.▇▇ RUN apt-get update -y -qq && apt-get -y -qq install software-properties-common RUN add-apt-repository ppa:jonathonf/python-3.6 RUN apt-get update -y -qq && apt-get -y -qq install python3.6 RUN apt-get -y -qq install python3-dev python3-setuptools python3-pip supervisor nano sudo libpcap- dev l...
