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
rpi_detector | |
- dicovery module, use any way to detect ip by partial mac address | |
- use the ip to create ansible inventory | |
optional | |
- test for standard login methods # integrated in rpi_ssh | |
- ssh with password | |
- ssh with key | |
----------------------------------------------------------------------------------------------------------- | |
rpi_inventory |
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/env python | |
from Foundation import NSUserNotification, NSUserNotificationCenter, NSObject | |
from PyObjCTools import AppHelper | |
''' | |
This class is used for NSUserNotificationCenter alert. User needs to select Alerts style | |
in System Preferences -> Notifications for the python script. | |
''' | |
class Notification(NSObject): |