> zdump /etc/localtime
/etc/localtime Mon Sep 5 15:08:55 2016 CEST
Docker link timezone into container:
| import time | |
| time.sleep(0.25) | |
| exitCode, contents = dialog.input_dialog(message="What is the name?", default="") | |
| salutation = "" | |
| if exitCode == 0: | |
| salutation = contents | |
| answer = """Hello {0}, |
| class Behandlungsplan { | |
| def count = 0 | |
| def patient(String yo) { | |
| println "Patient: " + yo | |
| } | |
| def behandlung(String yolo) { | |
| println yolo | |
| count ++ |
| job('test') { | |
| steps{ | |
| maven { | |
| mavenInstallation('3.3.9') | |
| goals('fuu:bar') | |
| } | |
| maven { | |
| mavenInstallation('3.3.9') | |
| goals('compile') | |
| } |
| # Create a Jenkins job via API | |
| curl -X POST -H "Content-Type:application/xml" -d @config.xml http://<user>:<api-token@<server>/createItem?name=<job-name> | |
| # Download an artifact: | |
| wget --auth-no-challenge --http-user=<user> --http-password=<user-token> http://<server>/<path-to-foobar> | |
| curl -X GET http://<user>:<api-token@<server> |
Die folgende Tabelle zeigt die Nummern der Abschnitte der Handbuchseiten und den Typ der dort zu findenden Seiten.
1 Ausführbare Programme oder Shell-Befehle
2 Systemaufrufe (Kernel-Funktionen)
3 Bibliotheksaufrufe (Funktionen in Programmbibliotheken)
4 Spezielle Dateien (gewöhnlich in /dev)
/etc/security/limits.conf is ignoredLimitNOFILE=10000 (with an appropriate value) in the .service file
systemctl daemon-reloadsystemctl restart <service>systemctl show -p LimitNOFILE <service>| job.setAssignedLabel( | |
| // fuu && !bar | |
| new hudson.model.labels.LabelExpression.And( | |
| new hudson.model.labels.LabelAtom("fuu"), | |
| new hudson.model.labels.LabelExpression.Not(new hudson.model.labels.LabelAtom("bar")) | |
| ) | |
| ) |