Compare commits

..

4 Commits

Author SHA1 Message Date
d28e2ea89a docs: alphabetical order for variables 2025-11-17 07:38:13 +01:00
f79501e4c8 docs: fix readme according to repo name when it's cloned 2025-11-17 07:11:17 +01:00
a79f5c7ee6 docs: update readme 2025-11-16 18:53:02 +01:00
618d186ea2 feat: add default for refresh interval 2025-11-16 18:52:59 +01:00
2 changed files with 8 additions and 7 deletions

View File

@@ -26,22 +26,22 @@ This role doesn't have any dependencies to other roles.
freshrss_root_dir: "/var/www" freshrss_root_dir: "/var/www"
freshrss_version: "1.27.1" freshrss_version: "1.27.1"
freshrss_checksum: "99fd1d0e6f506832e6600c98e4c9369edad6bfec715df9b1b7c8c3eb6a455c22" freshrss_checksum: "99fd1d0e6f506832e6600c98e4c9369edad6bfec715df9b1b7c8c3eb6a455c22"
freshrss_refresh_interval: 15 freshrss_refresh_interval: 10
roles: roles:
- freshrss - ansible-role-freshrss
``` ```
## Variables ## Variables
| Variable | Required | Default | Description | | Variable | Required | Default | Description |
| --------------------------- | -------- | ---------------------------------- | ---------------------------------------------------------------- | | --------------------------- | -------- | ---------------------------------- | ---------------------------------------------------------------- |
| `freshrss_root_dir` | **Yes** | - | Directory where FreshRSS archive is downloaded and extracted |
| `freshrss_path` | No | `{{ freshrss_root_dir }}/freshrss` | Web-accessible path where FreshRSS will be symlinked |
| `freshrss_version` | **Yes** | - | FreshRSS version to deploy (e.g., `"1.27.1"`) |
| `freshrss_refresh_interval` | **Yes** | - | Feed refresh interval in minutes (e.g., `15` = every 15 minutes) |
| `freshrss_checksum` | No | `""` | SHA256 checksum to verify the archive if user sets it | | `freshrss_checksum` | No | `""` | SHA256 checksum to verify the archive if user sets it |
| `freshrss_user` | No | `www-data` | User that will own FreshRSS files and run the cron job |
| `freshrss_group` | No | `www-data` | Group that will own FreshRSS files | | `freshrss_group` | No | `www-data` | Group that will own FreshRSS files |
| `freshrss_path` | No | `{{ freshrss_root_dir }}/freshrss` | Web-accessible path where FreshRSS will be symlinked |
| `freshrss_refresh_interval` | No | `15` | Feed refresh interval in minutes (every X minutes) |
| `freshrss_root_dir` | **Yes** | - | Directory where FreshRSS archive is downloaded and extracted |
| `freshrss_user` | No | `www-data` | User that will own FreshRSS files and run the cron job |
| `freshrss_version` | **Yes** | - | FreshRSS version to deploy (e.g., `"1.27.1"`) |
## Additional information ## Additional information

View File

@@ -3,3 +3,4 @@ freshrss_path: "{{ freshrss_root_dir }}/freshrss"
freshrss_checksum: "" freshrss_checksum: ""
freshrss_user: www-data freshrss_user: www-data
freshrss_group: www-data freshrss_group: www-data
freshrss_refresh_interval: 15