diff options
author | Romain Porte <microjoe@microjoe.org> | 2020-05-08 20:34:14 +0200 |
---|---|---|
committer | Romain Porte <microjoe@microjoe.org> | 2020-05-08 20:34:14 +0200 |
commit | 00769d2eae2fd591b7b6c70104be89e049a7cbd1 (patch) | |
tree | f22d7a6826fee169e9c909b1612f9c1ea5fa31b9 | |
parent | 12667986a94aff8476ac50409a53e444af774533 (diff) | |
download | MicroJoe.ttrss-00769d2eae2fd591b7b6c70104be89e049a7cbd1.tar.gz MicroJoe.ttrss-00769d2eae2fd591b7b6c70104be89e049a7cbd1.zip |
remove useless files
-rw-r--r-- | .travis.yml | 27 | ||||
-rw-r--r-- | LICENSE | 19 | ||||
-rw-r--r-- | README.md | 40 | ||||
-rw-r--r-- | handlers/main.yml | 2 | ||||
-rw-r--r-- | meta/main.yml | 20 | ||||
-rw-r--r-- | tests/inventory | 2 | ||||
-rw-r--r-- | tests/test.yml | 5 |
7 files changed, 0 insertions, 115 deletions
diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 5a95b14..0000000 --- a/.travis.yml +++ /dev/null @@ -1,27 +0,0 @@ ---- -sudo: required -language: python -python: "2.7" - -# Install ansible - -before_install: - - sudo apt-get update -qq - - sudo apt-get install -qq python-apt python-pycurl python-pip - -install: - # Install ansible - - pip install ansible - - # Check ansible version - - ansible --version - - # Create ansible.cfg with correct roles_path - - printf '[defaults]\nroles_path=../' >ansible.cfg - -script: - # Basic role syntax check - - ansible-playbook tests/test.yml -i tests/inventory --syntax-check - -notifications: - webhooks: https://galaxy.ansible.com/api/v1/notifications/ diff --git a/LICENSE b/LICENSE deleted file mode 100644 index bda6513..0000000 --- a/LICENSE +++ /dev/null @@ -1,19 +0,0 @@ -Copyright 2017 Romain Porte - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/README.md b/README.md deleted file mode 100644 index e0406cc..0000000 --- a/README.md +++ /dev/null @@ -1,40 +0,0 @@ -TT-RSS -====== - -[](https://travis-ci.org/MicroJoe/ansible-role-ttrss) - -TinyTinyRSS role for nginx with letsencrypt support. - -Requirements ------------- - -- LetsEncrypt -- Postgresql -- Nginx -- Debian Stretch - -Role Variables --------------- - -TBD - -Example Playbook ----------------- - - - hosts: servers - roles: - - role: MicroJoe.ttrss - nginx_server_name: tt-rss.example.com - letsencrypt_activate: true - letsencrypt_https: true - tags: [ttrss] - -License -------- - -MIT - -Author Information ------------------- - -Romain Porte diff --git a/handlers/main.yml b/handlers/main.yml deleted file mode 100644 index 14a8e5a..0000000 --- a/handlers/main.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -# handlers file for MicroJoe.ttrss
\ No newline at end of file diff --git a/meta/main.yml b/meta/main.yml deleted file mode 100644 index 186139f..0000000 --- a/meta/main.yml +++ /dev/null @@ -1,20 +0,0 @@ -galaxy_info: - author: Romain Porte - description: TinyTinyRSS role for nginx with letsencrypt support - - license: MIT - - min_ansible_version: 2.0 - - platforms: - - name: Debian - versions: - - stretch - - galaxy_tags: - - tt-rss - - ttrss - - nginx - - letsencrypt - -dependencies: [] diff --git a/tests/inventory b/tests/inventory deleted file mode 100644 index 878877b..0000000 --- a/tests/inventory +++ /dev/null @@ -1,2 +0,0 @@ -localhost - diff --git a/tests/test.yml b/tests/test.yml deleted file mode 100644 index 49815e4..0000000 --- a/tests/test.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -- hosts: localhost - remote_user: root - roles: - - ansible-role-ttrss |