{"id":15517029,"url":"https://github.com/deric/puppet-tuned","last_synced_at":"2026-03-01T19:02:24.351Z","repository":{"id":252231270,"uuid":"809835356","full_name":"deric/puppet-tuned","owner":"deric","description":"Manage tuned configuration with Puppet","archived":false,"fork":false,"pushed_at":"2025-11-12T07:47:42.000Z","size":97,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-23T03:49:39.326Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/deric.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"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":"2024-06-03T14:37:43.000Z","updated_at":"2025-11-12T07:46:38.000Z","dependencies_parsed_at":"2024-08-27T08:58:00.267Z","dependency_job_id":"b9e1fa89-07b1-42ec-8460-334e4ff9d586","html_url":"https://github.com/deric/puppet-tuned","commit_stats":null,"previous_names":["deric/puppet-tuned"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/deric/puppet-tuned","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deric%2Fpuppet-tuned","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deric%2Fpuppet-tuned/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deric%2Fpuppet-tuned/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deric%2Fpuppet-tuned/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deric","download_url":"https://codeload.github.com/deric/puppet-tuned/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deric%2Fpuppet-tuned/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29806148,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-24T22:43:48.403Z","status":"ssl_error","status_checked_at":"2026-02-24T22:43:18.536Z","response_time":75,"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-10-02T10:10:56.462Z","updated_at":"2026-03-01T19:02:24.330Z","avatar_url":"https://github.com/deric.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# puppet-tuned\n\n[![Puppet Forge](http://img.shields.io/puppetforge/v/deric/tuned.svg)](https://forge.puppet.com/modules/deric/tuned) [![Tests](https://github.com/deric/puppet-tuned/actions/workflows/test.yml/badge.svg)](https://github.com/deric/puppet-tuned/actions/workflows/test.yml)\n\nA module to manage [tuneD](https://github.com/redhat-performance/tuned) service and its configuration.\n\n## Usage\n\nApply defaults, start service use auto-detected profile:\n\n```puppet\ninclude tuned\n```\n\nGlobal configuration (typically stored in `/etc/tuned/tuned-main.conf`)\n\n```yaml\ntuned::main:\n  # Whether to use daemon. Without daemon it just applies tuning. It is\n  # not recommended, because many functions don't work without daemon,\n  # e.g. there will be no D-Bus, no rollback of settings, no hotplug,\n  # no dynamic tuning, ...\n  daemon: 1\n\n  # Dynamicaly tune devices, if disabled only static tuning will be used.\n  dynamic_tuning: 1\n\n  # How long to sleep before checking for events (in seconds)\n  # higher number means lower overhead but longer response time.\n  sleep_interval: 1\n\n  # Update interval for dynamic tunings (in seconds).\n  # It must be multiply of the sleep_interval.\n  update_interval: 10\n\n  # Recommend functionality, if disabled \"recommend\" command will be not\n  # available in CLI, daemon will not parse recommend.conf but will return\n  # one hardcoded profile (by default \"balanced\").\n  recommend_command: 1\n\n  # Whether to reapply sysctl from /run/sysctl.d/, /etc/sysctl.d/ and\n  # /etc/sysctl.conf.  If enabled, these sysctls will be re-appliead\n  # after TuneD sysctls are applied, i.e. TuneD sysctls will not\n  # override user-provided system sysctls.\n  reapply_sysctl: 1\n```\nSwitch to a predefined profile:\n\n```yaml\ntuned::profile: balanced\n```\n\nsee `tuned-adm list` for available options.\n\n## Custom profiles\n\nCreate custom profiles, first level key is the profile name, in this case `custom`.\n```yaml\ntuned::profiles:\n  custom:\n    main:\n      include: balanced\n    sysctl:\n      net.ipv4.tcp_fastopen: 3\n```\nThis would generate `/etc/tuned/custom/tuned.conf` file with corresponding configuration.\n\n\nOperators `=\u003e` can be used by passing value starting with `\u003e`\n\n```yaml\ntuned::profile: io\ntuned::profiles:\n  io:\n    disk-sd:\n      type: disk\n      readahead: '\u003e4096'\n```\n\nEach section correspods to a plugin name. See `tuned-adm list plugins` for available plugins, e.g.:\n\n```\n$ tuned-adm list plugins\nrtentsk\nsystemd\nvideo\nvm\nscsi_host\ndisk\nscript\nsysctl\nsysfs\neeepc_she\nirqbalance\nselinux\nmodules\nusb\nbootloader\nmounts\ncpu\naudio\nservice\nscheduler\nnet\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fderic%2Fpuppet-tuned","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fderic%2Fpuppet-tuned","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fderic%2Fpuppet-tuned/lists"}