{"id":22064486,"url":"https://github.com/josef-friedrich/ansible-module-gitupdater","last_synced_at":"2026-02-10T23:31:25.145Z","repository":{"id":45555706,"uuid":"92644787","full_name":"Josef-Friedrich/ansible-module-gitupdater","owner":"Josef-Friedrich","description":"Ansible module for the git-repo-updater (gitup).","archived":false,"fork":false,"pushed_at":"2025-01-07T18:52:55.000Z","size":233,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-23T09:08:59.585Z","etag":null,"topics":["ansible","ansible-modules"],"latest_commit_sha":null,"homepage":"https://github.com/earwig/git-repo-updater","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Josef-Friedrich.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"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}},"created_at":"2017-05-28T06:46:00.000Z","updated_at":"2025-01-07T18:52:58.000Z","dependencies_parsed_at":"2024-07-12T10:29:33.680Z","dependency_job_id":"2a5ffb1c-1a0c-46ae-9987-6a1b9d779f06","html_url":"https://github.com/Josef-Friedrich/ansible-module-gitupdater","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Josef-Friedrich/ansible-module-gitupdater","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Josef-Friedrich%2Fansible-module-gitupdater","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Josef-Friedrich%2Fansible-module-gitupdater/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Josef-Friedrich%2Fansible-module-gitupdater/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Josef-Friedrich%2Fansible-module-gitupdater/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Josef-Friedrich","download_url":"https://codeload.github.com/Josef-Friedrich/ansible-module-gitupdater/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Josef-Friedrich%2Fansible-module-gitupdater/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29321332,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-10T20:44:44.282Z","status":"ssl_error","status_checked_at":"2026-02-10T20:44:43.393Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["ansible","ansible-modules"],"created_at":"2024-11-30T19:12:01.271Z","updated_at":"2026-02-10T23:31:25.114Z","avatar_url":"https://github.com/Josef-Friedrich.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":".. image:: https://github.com/Josef-Friedrich/ansible-module-gitupdater/actions/workflows/tests.yml/badge.svg\n    :target: https://github.com/Josef-Friedrich/ansible-module-gitupdater/actions/workflows/tests.yml\n    :alt: Tests\n\nansible-module-gitupdater\n=========================\n\nAnsible module for the `git-repo-updater \u003chttps://github.com/earwig/git-repo-updater\u003e`__ (gitup).\n\n:: \n\n    \u003e MODULE gitupdater (/etc/ansible/library/gitupdater.py)\n\n      gitup https://github.com/earwig/git-repo-updater is a console script\n      that allows you to easily update multiple git repositories at once.\n\n    OPTIONS (red indicates it is required):\n\n       cleanup  Clean up the repositories that have been deleted.\n            default: false\n\n       path    Full path to the git repository.\n            default: false\n\n       state   State of the gitup configuration for this repository. The\n               git repository itself is not affected.\n            choices: [present, absent]\n            default: present\n\n    REQUIREMENTS:  git-repo-updater\n\n    AUTHOR: Josef Friedrich (@Josef-Friedrich)\n\n    METADATA:           metadata_version: '1.0'\n              status:\n              - preview\n              supported_by: community\n\n    EXAMPLES:\n    # Bookmark a repository, state can be omitted\n    - gitupdater:\n        path: /var/repos/project\n\n    # Bookmark a repository\n    - gitupdater:\n        path: /var/repos/project\n        state: present\n\n    # Delete bookmark\n    - gitupdater:\n        path: /var/repos/project\n        state: absent\n\n    # Delete non-existent repositories\n    - gitupdater:\n        cleanup: true\n\n    RETURN VALUES:\n\n       path    Full path to the git repository\n            returned: always\n            sample: /path/to/repository\n            type: string\n\n       state   State of the gitup configuration for this repository\n            returned: always\n            sample: present\n            type: string\n\nDevelopment\n===========\n\nTest functionality\n------------------\n\n::\n\n   /usr/local/src/ansible/hacking/test-module -m gitupdater.py -a\n\nTest documentation\n------------------\n\n::\n\n   source /usr/local/src/ansible/hacking/env-setup\n   /usr/local/src/ansible/test/sanity/validate-modules/validate-modules --arg-spec --warnings gitupdater.py\n\nGenerate documentation\n----------------------\n\n::\n\n   ansible-doc -M . gitupdater\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjosef-friedrich%2Fansible-module-gitupdater","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjosef-friedrich%2Fansible-module-gitupdater","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjosef-friedrich%2Fansible-module-gitupdater/lists"}