@iobroker/create-adapter
Version:
Command line utility to create customized ioBroker adapters
25 lines (21 loc) • 605 B
JavaScript
;
const templateFunction = answers => {
const devcontainer = answers.tools && answers.tools.includes("devcontainer");
if (!devcontainer) {
return;
}
const template = `
#!/bin/bash
set -e
# Define log file location
LOG_FILE=/opt/iobroker/log/boot.log
mkdir -p /opt/iobroker/log
# Start logging to the file (standard output and error)
exec > >(tee "$LOG_FILE") 2>&1
/opt/scripts/iobroker_startup.sh
`;
return template.trim();
};
templateFunction.customPath = ".devcontainer/iobroker/boot.sh";
module.exports = templateFunction;
//# sourceMappingURL=boot.sh.js.map