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
--- | |
- hosts: office-dashboard-terminal | |
become: yes | |
tasks: | |
- name: Ensure displays are up during office hours | |
cron: | |
name="Activate display" | |
minute="0" | |
hour="8" | |
weekday="1-5" |
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
# Python gzip demo: create and unpack archive | |
import os | |
import random | |
import string | |
import glob | |
import tarfile | |
import shutil | |
import filecmp |