| From | To | Expression |
|---|
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 | |
| # -*- coding: utf-8 -*- | |
| ######################################################################################################################## | |
| """ | |
| Telegraf input plugin for Arris TM1602AP2 | |
| Copyright © 2018 by John Celoria. |
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
| [Unit] | |
| Description=grafana in Docker container | |
| After=docker.service container-influxdb.service | |
| Requires=docker.service | |
| [Service] | |
| TimeoutStartSec=0 | |
| Restart=always | |
| ExecStartPre=-/usr/bin/docker stop grafana | |
| ExecStartPre=-/usr/bin/docker rm grafana |
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
| [Unit] | |
| Description=influxdb in Docker container | |
| After=docker.service | |
| Requires=docker.service | |
| [Service] | |
| TimeoutStartSec=0 | |
| Restart=always | |
| ExecStartPre=-/usr/bin/docker stop influxdb | |
| ExecStartPre=-/usr/bin/docker rm influxdb |
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
| [Unit] | |
| Description=telegraf in Docker container | |
| After=docker.service container-influxdb.service | |
| Requires=docker.service | |
| [Service] | |
| TimeoutStartSec=0 | |
| Restart=always | |
| ExecStartPre=-/usr/bin/docker stop telegraf | |
| ExecStartPre=-/usr/bin/docker rm telegraf |
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 bash | |
| SELF=${0##*/} SDIR=${0%/*} | |
| ######################################################################################################################## | |
| ######################################################## config ######################################################## | |
| # Set some defaults | |
| VERSION=0.3 | |
| CENTOS_RELEASE="7" |
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 bash | |
| SELF=${0##*/} SDIR=${0%/*} | |
| ######################################################################################################################## | |
| : ' | |
| The MIT License (MIT) | |
| Copyright © 2018 by John Celoria. | |
| Permission is hereby granted, free of charge, to any person obtaining a copy |
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
| --- | |
| # ############################################################################ # | |
| # ### ALARM CLOCK PACKAGE #################################################### # | |
| group: | |
| # -------------------------------------------------------------------------- # | |
| alarm_clock: | |
| name: Alarm Clock | |
| entities: |
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
| # | |
| # Ansible managed | |
| # | |
| version: "2" | |
| services: | |
| nzbget: | |
| environment: | |
| - PUID=110000 |
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
| --- | |
| # ############################################################################ # | |
| # ############################################################################ # | |
| calendar: | |
| # -------------------------------------------------------------------------- # | |
| - platform: caldav | |
| url: !secret ha_caldav_url | |
| username: !secret ha_caldav_user |