https://github.com/ziozzang/server-provisioning
Server initiate scripts
https://github.com/ziozzang/server-provisioning
Last synced: 2 months ago
JSON representation
Server initiate scripts
- Host: GitHub
- URL: https://github.com/ziozzang/server-provisioning
- Owner: ziozzang
- Created: 2015-02-25T04:43:40.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-02-25T05:00:41.000Z (over 11 years ago)
- Last Synced: 2025-08-19T19:14:34.017Z (11 months ago)
- Language: Python
- Size: 121 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# server-provisioning
Server initiate scripts
This script will be installed at "/var/local/sysinit"
Sample Json config
```
{
"network": [
{
"type": "public",
"nic": "eth0",
"mac": "00:0C:29:DD:9C:73",
"address": "192.168.0.64",
"subnet": "255.255.255.0",
"gateway": "192.168.0.1",
"dns": [
"8.8.8.8",
"8.8.6.6"
]
},
{
"type": "private",
"nic": "eth1",
"mac": "22:34:56:78:90:ab",
"address": "1.2.3.4",
"subnet": "255.255.255.0"
}
],
"hostname": "asdf1234"
}
```