{"id":16991314,"url":"https://github.com/gmasse/ovh-ipxe-customer-script","last_synced_at":"2026-02-22T08:32:24.537Z","repository":{"id":98659575,"uuid":"95365412","full_name":"gmasse/ovh-ipxe-customer-script","owner":"gmasse","description":"Boot OVH server with your own iPXE script","archived":false,"fork":false,"pushed_at":"2017-06-25T14:53:34.000Z","size":5,"stargazers_count":26,"open_issues_count":2,"forks_count":5,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-22T03:43:32.727Z","etag":null,"topics":["ipxe","ovhcloud"],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gmasse.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":"2017-06-25T14:38:27.000Z","updated_at":"2024-11-04T03:25:29.000Z","dependencies_parsed_at":"2023-03-16T04:45:11.522Z","dependency_job_id":null,"html_url":"https://github.com/gmasse/ovh-ipxe-customer-script","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gmasse/ovh-ipxe-customer-script","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gmasse%2Fovh-ipxe-customer-script","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gmasse%2Fovh-ipxe-customer-script/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gmasse%2Fovh-ipxe-customer-script/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gmasse%2Fovh-ipxe-customer-script/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gmasse","download_url":"https://codeload.github.com/gmasse/ovh-ipxe-customer-script/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gmasse%2Fovh-ipxe-customer-script/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266913751,"owners_count":24005584,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-24T02:00:09.469Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["ipxe","ovhcloud"],"created_at":"2024-10-14T03:25:30.043Z","updated_at":"2025-10-23T18:15:05.201Z","avatar_url":"https://github.com/gmasse.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# iPXE customer script (BETA)\n\nBooting your server with your own iPXE script allows cool things like:\n - running diskless bare-metal system like CoreOS, SmartOS, ...\n - recovering with your own Rescue system or bare-metal restore tools (like Acronis and Idera)\n - launching Standard installer like ESXi, [Linux](examples/linux.md), Solaris, ...\n\nHow?\nUsing directly the RESTful API [EU](https://api.ovh.com/)|[CA](https://ca.api.ovh.com) or the API console [EU](https://api.ovh.com/console/)|[CA](https://ca.api.ovh.com/console/).\n\nIt's also working for Kimsufi [EU](https://eu.api.kimsufi.com)|[CA](https://ca.api.kimsufi.com) and SoYouStart [EU](https://eu.api.soyoustart.com)|[CA](https://ca.api.soyoustart.com).\n\n\n#### 1. Upload your custom iPXE script\nCoreOS example (https://coreos.com/docs/running-coreos/bare-metal/booting-with-ipxe/)\n\n```http\nPOST /1.0/me/ipxeScript HTTP/1.1\n\n{\n  \"description\": \"CoreOS stable\",\n  \"name\": \"coreos\",\n  \"script\": \"#!ipxe\\n\\nset base-url http://stable.release.core-os.net/amd64-usr/current\\nkernel ${base-url}/coreos_production_pxe.vmlinuz sshkey=\\\"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAYQC2PxAKTLdczK9+RNsGGPsz0eC2pBlydBEcrbI7LSfiN7Bo5hQQVjki+Xpnp8EEYKpzu6eakL8MJj3E28wT/vNklT1KyMZrXnVhtsmOtBKKG/++odpaavdW2/AU0l7RZiE= coreos pxe demo\\\"\\ninitrd ${base-url}/coreos_production_pxe_image.cpio.gz\\nboot\"\n}\n```\n```http\nHTTP/1.1 200 OK\n```\n\n#### 2. Request your custom bootId\n\n```http\nGET /1.0/dedicated/server/ns320309.ip-46-105-117.eu/boot?bootType=ipxeCustomerScript HTTP/1.1\n```\n```http\nHTTP/1.1 200 OK\n\n[\n  38\n]\n```\n\n#### 3. Configure your server to boot on your iPXE script\n\n```http\nPUT /1.0/dedicated/server/ns320309.ip-46-105-117.eu HTTP/1.1\n\n{\n  \"bootId\": 38\n}\n```\n```http\nHTTP/1.1 200 OK\n```\n\n#### 4. Reboot your server!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgmasse%2Fovh-ipxe-customer-script","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgmasse%2Fovh-ipxe-customer-script","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgmasse%2Fovh-ipxe-customer-script/lists"}