mirror of
https://github.com/clearlinux/clr-cloud-init-svc.git
synced 2026-09-07 06:14:36 +00:00
After the removal of ister, the project was rebranded as clr-cloud-init-svc. Signed-off-by: John Akre <john.w.akre@intel.com>
16 lines
314 B
Bash
16 lines
314 B
Bash
#!/bin/bash
|
|
uwsgi_app_dir=/usr/share/uwsgi
|
|
uwsgi_socket_dir=/run/uwsgi
|
|
ccis_app_name=ccis
|
|
|
|
web_root=/var/www
|
|
ipxe_root=$web_root/ipxe
|
|
ccis_root=$web_root/$ccis_app_name
|
|
tftp_root=/srv/tftp
|
|
|
|
external_iface=eno1
|
|
internal_iface=eno2
|
|
pxe_subnet=192.168.1
|
|
pxe_internal_ip=$pxe_subnet.1
|
|
pxe_subnet_mask_ip=255.255.255.0
|