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
| # www.fduran.com | |
| # hardware stress test | |
| # mismatched md5sums shows a faulty disk/RAM | |
| # time depends on hardware, ex: 1 sec per 100 count | |
| dd if=/dev/zero of=/tmp/test.file bs=1M count=1000 | |
| for i in {1..5}; do md5sum /tmp/test.file; done |
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
| version: '3.2' | |
| services: | |
| agent: | |
| image: portainer/agent | |
| environment: | |
| # REQUIRED: Should be equal to the service name prefixed by "tasks." when | |
| # deployed inside an overlay network | |
| AGENT_CLUSTER_ADDR: tasks.agent | |
| # AGENT_PORT: 9001 |
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
| /*eslint-disable no-var*/ | |
| var path = require('path'); | |
| var AureliaWebpackPlugin = require('aurelia-webpack-plugin'); | |
| var ProvidePlugin = require('webpack/lib/ProvidePlugin'); | |
| module.exports = { | |
| devServer: { | |
| host: 'localhost', | |
| port: 3000, |
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
| #!/bin/sh | |
| # | |
| # | |
| # | |
| # Modifications are: | |
| # * Remove authbind. | |
| # * Remove JVM_TMP. We will use CATALINA_BASE/temp | |
| # * Explicitly set JAVA_HOME. No need to figure out where it is. | |
| # * Remove SECURITY. We are not using the Java security manager. | |
| # * Remove references to DEFAULT. We have no defaults to use. |
NewerOlder