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/python | |
| """ | |
| Print out a list of builds that need signing. | |
| """ | |
| __requires__ = 'bodhi' | |
| import pkg_resources | |
| import os | |
| import sys |
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 python | |
| import __main__ | |
| __requires__ = __main__.__requires__ = 'WebOb>=1.4.1' | |
| import pkg_resources | |
| # This program is free software; you can redistribute it and/or | |
| # modify it under the terms of the GNU General Public License | |
| # as published by the Free Software Foundation; either version 2 | |
| # of the License, or (at your option) any later version. | |
| # |
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 python3 | |
| # Re-encrypt all pass files with a different GPG key | |
| # 1) First, add your new key to ~/.password-store/.gpg-id | |
| # 2) Run this script. | |
| # 3) Confirm that things work | |
| # 4) Remove the old backup keys with `find ~/.password-store -name '*.old' | xargs rm` | |
| import os | |
| import shutil | |
| import subprocess |
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
| import os | |
| import json | |
| import asyncio | |
| import aioredis | |
| from lightning import LightningRpc | |
| LN_RPC_URI = os.path.expanduser("~/.lightning/lightning-rpc") | |
| LN_RPC = LightningRpc(LN_RPC_URI) |
OlderNewer