This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Install and start | |
docker run --stop-timeout 3600 -i --name a4h -h vhcala4hci -p 3200:3200 -p 3300:3300 -p 8443:8443 -p 30213:30213 -p 50000:50000 -p 50001:50001 store/saplabs/abaptrial:1909 -agree-to-sap-license -skip-hostname-check -skip-limits-check | |
## Start | |
docker start -ai a4h | |
## Shutown requires more than standard 10 seconds | |
docker stop --time 7200 a4h |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ALTER USER <USER> DISABLE PASSWORD LIFETIME |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xs mta-ops | |
xs deploy -i <id> -a abort |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Simple code to have notifications (interrupts) when the signal to the input pins change. | |
* | |
*/ | |
const Gpio = require('onoff').Gpio; | |
var sensorPins = [27,22,5,6,13,26,23,18]; | |
var sensors = []; | |
// Loop through each configured sensor and create the onoff |