{"id":15282444,"url":"https://github.com/salt-extensions/saltext-apcups","last_synced_at":"2026-03-04T15:32:17.129Z","repository":{"id":257803868,"uuid":"864461981","full_name":"salt-extensions/saltext-apcups","owner":"salt-extensions","description":"Salt Extension for interacting with APC UPS (apcupsd)","archived":false,"fork":false,"pushed_at":"2026-01-27T21:48:15.000Z","size":101,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-01-28T09:22:48.290Z","etag":null,"topics":["apcups","apcupsd","monitoring","salt","salt-extension","saltstack","saltstack-extension","ups"],"latest_commit_sha":null,"homepage":"https://salt-extensions.github.io/saltext-apcups/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/salt-extensions.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE-OF-CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":"NOTICE","maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-09-28T09:30:30.000Z","updated_at":"2026-01-27T21:42:05.000Z","dependencies_parsed_at":null,"dependency_job_id":"b52f45a1-aec4-4f07-b4d2-0aba31af6f93","html_url":"https://github.com/salt-extensions/saltext-apcups","commit_stats":null,"previous_names":["salt-extensions/saltext-apcups"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/salt-extensions/saltext-apcups","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salt-extensions%2Fsaltext-apcups","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salt-extensions%2Fsaltext-apcups/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salt-extensions%2Fsaltext-apcups/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salt-extensions%2Fsaltext-apcups/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/salt-extensions","download_url":"https://codeload.github.com/salt-extensions/saltext-apcups/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salt-extensions%2Fsaltext-apcups/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30084971,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T13:22:36.021Z","status":"ssl_error","status_checked_at":"2026-03-04T13:20:45.750Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["apcups","apcupsd","monitoring","salt","salt-extension","saltstack","saltstack-extension","ups"],"created_at":"2024-09-30T14:26:02.403Z","updated_at":"2026-03-04T15:32:17.108Z","avatar_url":"https://github.com/salt-extensions.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Salt Extension for APC UPS\n\nSalt Extension for interacting with APC UPS\n\n## Security\n\nIf you discover a security vulnerability, please refer\nto [Salt's security guide][security].\n\n## User Documentation\n\nFor setup and usage instructions, please refer to the\n[User Documentation][docs].\n\n## Contributing\n\nThe saltext-apcups project welcomes contributions from anyone!\n\nThe [Salt Extensions guide][salt-extensions-guide] provides comprehensive instructions on all aspects\nof Salt extension development, including [writing tests][writing-tests], [running tests][running-tests],\n[writing documentation][writing-docs] and [rendering the docs][rendering-docs].\n\n### Quickstart\n\nTo get started contributing, first clone this repository (or your fork):\n\n```bash\n# Clone the repo\ngit clone --origin upstream git@github.com:salt-extensions/saltext-apcups.git\n\n# Change to the repo dir\ncd saltext-apcups\n```\n\n#### Automatic\nIf you have installed [direnv][direnv], copying the included `.envrc.example` to `.envrc` and\nallowing it to run ensures a proper development environment is present and the virtual environment is active.\n\nWithout `direnv`, you can still run the automation explicitly:\n\n```bash\nmake dev  # or python3 tools/initialize.py\nsource .venv/bin/activate\n```\n\n#### Manual\nPlease follow the [first steps][first-steps], skipping the repository initialization and first commit.\n\n### Pull request\n\nAlways make changes in a feature branch:\n\n```bash\ngit switch -c my-feature-branch\n```\n\nPlease ensure you include a [news fragment](https://salt-extensions.github.io/salt-extension-copier/topics/documenting/changelog.html#procedure)\ndescribing your changes. This is a requirement for all user-facing changes (bug fixes, new features),\nwith the exception of documentation changes.\n\nTo [submit a Pull Request][submitting-pr], you'll need a fork of this repository in\nyour own GitHub account. If you followed the instructions above,\nset your fork as the `origin` remote now:\n\n```bash\ngit remote add origin git@github.com:\u003cyour_fork\u003e.git\n```\n\nEnsure you followed the [first steps][first-steps] and commit your changes, fixing any\nfailing `pre-commit` hooks. Then push the feature branch to your fork and submit a PR.\n\n### Ways to contribute\n\nContributions come in many forms, and they’re all valuable! Here are some ways you can help\nwithout writing code:\n\n* **Documentation**: Especially examples showing how to use this project\n  to solve specific problems.\n* **Triaging issues**: Help manage [issues][issues] and participate in [discussions][discussions].\n* **Reviewing [Pull Requests][PRs]**: We especially appreciate reviews using [Conventional Comments][comments].\n\nYou can also contribute by:\n\n* Writing blog posts\n* Sharing your experiences using Salt + APC UPS\n  on social media\n* Giving talks at conferences\n* Publishing videos\n* Engaging in IRC, Discord or email groups\n\nAny of these things are super valuable to our community, and we sincerely\nappreciate every contribution!\n\n[security]: https://github.com/saltstack/salt/blob/master/SECURITY.md\n[salt-extensions-guide]: https://salt-extensions.github.io/salt-extension-copier/\n[writing-tests]: https://salt-extensions.github.io/salt-extension-copier/topics/testing/writing.html\n[running-tests]: https://salt-extensions.github.io/salt-extension-copier/topics/testing/running.html\n[writing-docs]: https://salt-extensions.github.io/salt-extension-copier/topics/documenting/writing.html\n[rendering-docs]: https://salt-extensions.github.io/salt-extension-copier/topics/documenting/building.html\n[first-steps]: https://salt-extensions.github.io/salt-extension-copier/topics/creation.html#initialize-the-python-virtual-environment\n[submitting-pr]: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork\n[direnv]: https://direnv.net\n[issues]: https://github.com/salt-extensions/saltext-apcups/issues\n[PRs]: https://github.com/salt-extensions/saltext-apcups/pulls\n[discussions]: https://github.com/salt-extensions/saltext-apcups/discussions\n[comments]: https://conventionalcomments.org/\n[docs]: https://salt-extensions.github.io/saltext-apcups/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsalt-extensions%2Fsaltext-apcups","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsalt-extensions%2Fsaltext-apcups","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsalt-extensions%2Fsaltext-apcups/lists"}