This file contains 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
$bootstrap = <<SCRIPT | |
sudo apt-get update | |
sudo apt-get install -y git \ | |
python-pip python-dev python3-dev \ | |
libxml2-dev libxslt1-dev libpq-dev libffi-dev libldap2-dev \ | |
libsasl2-dev | |
sudo pip install tox | |
SCRIPT | |
Vagrant.configure("2") do |config| |
This file contains 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
[knikolla@lenovo-moc1 k2k-openstackclient]$ git diff master..k2k | |
diff --git a/openstackclient/common/clientmanager.py b/openstackclient/common/clientmanager.py | |
index 56ddcba..0295116 100644 | |
--- a/openstackclient/common/clientmanager.py | |
+++ b/openstackclient/common/clientmanager.py | |
@@ -205,6 +205,31 @@ class ClientManager(object): | |
if not self._auth_ref: | |
self.setup_auth() | |
LOG.debug("Get auth_ref") | |
+ |
This file contains 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/python | |
# There is an issue with the power indicator on rMBP 13". | |
# upower doesn't indicate AC/Batt event change until it polls | |
# the device after 30 seconds of inactivity. | |
# Since 30 seconds is too long, using this script I force it | |
# to refresh after 5 seconds by using the dbus. | |
import os | |
import time | |
while True: |
NewerOlder