Clarify Copyright declaration
This commit is contained in:
parent
41f83bdb06
commit
807f709a02
3 changed files with 55 additions and 10 deletions
17
README.md
17
README.md
|
@ -327,3 +327,20 @@ apply Notification "Service Alerts via @telegram_bot" to Service {
|
|||
* [Just the Commands](contrib/Director-Basket_Telegram_Commands.json)
|
||||
* [Commands and Notification Templates with fields](contrib/Director-Basket_Telegram_Notifications.json)
|
||||
(requires Director v1.8.0 or a master newer than [80f9ea2](https://github.com/Icinga/icingaweb2-module-director/commit/80f9ea2))
|
||||
|
||||
## License
|
||||
|
||||
Copyright (C) 2018 Marianne M. Spiller <github@spiller.me>
|
||||
|
||||
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 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
|
|
@ -1,9 +1,23 @@
|
|||
#!/usr/bin/env bash
|
||||
## /etc/icinga2/scripts/host-by-telegram.sh / 20170330
|
||||
## Marianne M. Spiller <github@spiller.me>
|
||||
## Last updated 20190820
|
||||
## Last tests used 2.11.2-1.buster
|
||||
|
||||
# Copyright (C) 2018 Marianne M. Spiller <github@spiller.me>
|
||||
#
|
||||
# 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 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
PROG="`basename $0`"
|
||||
HOSTNAME="`hostname`"
|
||||
TRANSPORT="curl"
|
||||
|
|
|
@ -1,9 +1,23 @@
|
|||
#!/usr/bin/env bash
|
||||
## /etc/icinga2/scripts/service-by-telegram.sh / 20170330
|
||||
## Marianne M. Spiller <github@spiller.me>
|
||||
## Last updated 20190820
|
||||
## Last tests used icinga2-2.11.2-1.buster
|
||||
|
||||
# Copyright (C) 2018 Marianne M. Spiller <github@spiller.me>
|
||||
#
|
||||
# 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 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
PROG="`basename $0`"
|
||||
HOSTNAME="`hostname`"
|
||||
TRANSPORT="curl"
|
||||
|
|
Loading…
Reference in a new issue