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
| # The version of createrepo coming over can change | |
| # We can't wildcard in ansible yum, so list with wildcard, then install | |
| - name: List the files called create repo | |
| find: | |
| paths: "{{ yum_repo_location }}" | |
| patterns: "createrepo*.rpm" | |
| register: create_repo_files | |
| - name: Install correct version of create repo | |
| yum: |
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 | |
| ''' | |
| Script to count messages by user posted to a channel for a given date range. | |
| Install: | |
| # sudo pip install -r requirements.txt | |
| Also you will need to obtain a slack API token: | |
| https://api.slack.com/docs/oauth-test-tokens |
OlderNewer