{"id":20121793,"url":"https://github.com/parseword/transmission-4-centos-7","last_synced_at":"2026-03-04T08:32:40.425Z","repository":{"id":82258349,"uuid":"588743636","full_name":"parseword/transmission-4-centos-7","owner":"parseword","description":"Files to support the installation of Transmission 4.0 on CentOS 7","archived":false,"fork":false,"pushed_at":"2024-06-15T16:16:54.000Z","size":32,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-02T20:26:10.830Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/parseword.png","metadata":{"files":{"readme":"README.md","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}},"created_at":"2023-01-13T22:05:19.000Z","updated_at":"2024-06-15T16:16:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"49581daa-4294-4b67-8995-b40bd54176a6","html_url":"https://github.com/parseword/transmission-4-centos-7","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/parseword/transmission-4-centos-7","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parseword%2Ftransmission-4-centos-7","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parseword%2Ftransmission-4-centos-7/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parseword%2Ftransmission-4-centos-7/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parseword%2Ftransmission-4-centos-7/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/parseword","download_url":"https://codeload.github.com/parseword/transmission-4-centos-7/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/parseword%2Ftransmission-4-centos-7/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30076890,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T08:01:56.766Z","status":"ssl_error","status_checked_at":"2026-03-04T08:00:42.919Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2024-11-13T19:32:43.610Z","updated_at":"2026-03-04T08:32:40.405Z","avatar_url":"https://github.com/parseword.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# transmission-4-centos-7\n\nFiles to support installation of the Transmission 4.0 client on CentOS 7.\n\n## Repository contents\n\nThis directory contains:\n\n- An Ansible task/playbook to compile and install Transmission 4.0 on CentOS 7\n\n- A systemd unit file suitable for running the Transmission 4.0 daemon\n\n- logrotate, sysconfig, and tmpfiles.d configuration files for the Transmission 4.0 daemon\n\n## The Ansible task\n\nThe [transmission4-installation.yaml](transmission4-installation.yaml) \nfile is an Ansible task that will build and install Transmission 4.0 from source on CentOS 7. It can be included\nfrom your playbook, or run as its own independent playbook. Configuration and usage are described below.\n\n### Configuring the Ansible task\n\nSet the options in the \"General configuration, \"Transmission configuration,\" and \"cURL configuration\" sections to your\nliking. The default values should work for most cases. If you `include` the task from within your own playbook, you can\ndefine any of the following variables there to override the task defaults:\n\n- `build_directory` - a temporary directory for downloading and compiling files\n- `do_cleanup` - whether or not to automatically delete build artifacts after successful installation\n- `transmission_version` - the target transmission version e.g. '4.0.0'\n- `trasmission_sha256` - sha256 of the .tar.xz distribution of the target transmission version\n- `transmission_configure_options` - CMake3 options for configuring Transmission\n- `curl_configure_options` - configure options for cURL\n\n### Running the Ansible task\n\nYou can either `ansible.builtin.include` the .yaml file from your own playbook, or use it as a stand-alone \nplaybook by uncommenting a few lines and specifying your own `hosts:` value.\n\nRunning the task performs the following actions:\n\n- Create a temporary build directory (by default, `/tmp/transmission4`)\n\n- Check to see if cURL 7.77.0 or newer is present; if not, download and install a temporary copy of the latest cURL\nrelease in the build directory. Transmission 4 requires libcurl features not available in cURL \u003c 7.77.0.\n\n- Install several prerequisites (via yum) required for the build process: cmake3, gettext, intltool, m4, make, \nopenssl-devel, perl-XML-Parser, pkgconfig\n\n- Temporarily install (via yum) the Red Hat Developer Toolset 7.0. CentOS 7 has gcc-c++ version 4.8.5, which is not \nsufficient to compile Transmission 4.0. The devtools-7 package provides gcc-c++ 7.3.1.\n\n- Download, compile, and install the specified Transmission version\n\n- Add a `transmission` user and group to the system, if they don't already exist\n\n- Create `/var/lib/transmission` where the daemon will write its files\n\n- Install a systemd unit file, plus logrotate, sysconfig, and tmpfiles.d configuration files for Transmission; those\nfiles are all downloaded from this repository\n\n- After successful installation, the Red Hat Developer Toolset 7.0 will be uninstalled, and the temporary build\ndirectory will be removed. You can disable this by setting `do_cleanup` to false.\n\n**The following will be added to your system if they don't already exist:**\n\n- a \"transmission\" user and group, which will run the transmission daemon\n- /etc/logrotate.d/transmission4-daemon\n- /etc/sysconfig/transmission4-daemon\n- /etc/systemd/system/transmission4-daemon.service\n- /etc/tmpfiles.d/transmission4-daemon.conf\n- /var/lib/transmission\n- /var/log/transmission\n\n## Notes and caveats\n\nThe Ansible task installs a systemd unit file, but it doesn't automatically start or enable the service. You'll need\nto do that yourself with `systemctl start transmission4-daemon` and `systemctl enable transmission4-daemon`.\n\nA `settings.json` file is *not* installed. If you have a `settings.json` file you want to use, place it into \n`/var/lib/transmission` prior to starting the transmission4-daemon service. Otherwise, Transmission will create a default\nsettings file the first time it runs.\n\nI only use the Transmission daemon and the web interface, so that's all I've tested. Building the Qt client is\nconfigured to \"AUTO\" by default, which I suppose will compile the GUI if you're running in a desktop environment. You'll\nat least end up with the CLI binaries: `transmission-cli`, `transmission-create`, `transmission-daemon`, `transmission-edit`,\n`transmission-remote`, and `transmission-show`.\n\nThe Transmission 4.0 binaries will be installed to `/usr/local/bin`. If you already have Transmission 3.0 from\nthe excellent [Geekery repository](http://geekery.altervista.org/dokuwiki/doku.php) -- which installs its binaries to\n`/usr/bin` instead -- you'll end up with both versions of Transmission installed. This is intentional. Running the\nAnsible task *shouldn't* clobber or overwrite any existing files, and the system files it installs are all named\nusing a `transmission4` scheme to keep them separate from Transmission 3.0.\n\n## Bugs\n\nIf you encounter a problem with the Ansible task, please [open a new issue](https://github.com/parseword/transmission-4-centos-7/issues/new) in this repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparseword%2Ftransmission-4-centos-7","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fparseword%2Ftransmission-4-centos-7","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparseword%2Ftransmission-4-centos-7/lists"}