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
| node("DOCKER"){ | |
| def url1 = 'http://sdal0009:8081/nexus/content/repositories/BNPPF_Local_Applications_Snapshots/com/bnppf/adm/TF01-iOS/maven-metadata.xml' | |
| def url2 = 'http://sdal0009.be.fortis.bank:8081/nexus/content/repositories/BNPPF_Local_Applications_Snapshots/com/bnppf/adm/TF01-Android/2.0.15-SNAPSHOT/maven-metadata.xml' | |
| parseXmlContent(url1) { mavenXml -> | |
| snapshotVersion = mavenXml.versioning.latest.text() | |
| } | |
| parseXmlContent(url2){ mavenXml -> | |
| buildNumber = mavenXml.versioning.snapshot.timestamp.text() |
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
| #!/usr/bin/env bash | |
| if [ "$(dconf read /org/gnome/settings-daemon/peripherals/touchpad/touchpad-enabled)" == 'true' ]; then | |
| echo "Disabling touchpad" | |
| dconf write /org/gnome/settings-daemon/peripherals/touchpad/touchpad-enabled false; | |
| else | |
| echo "Enabling touchpad" | |
| dconf write /org/gnome/settings-daemon/peripherals/touchpad/touchpad-enabled true; | |
| fi |
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
| # Pattern | |
| # <docker-machine name>=<host name>,<host name>,... | |
| registry=docker-registry |
NewerOlder