mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-10-04 00:14:13 +00:00

because otherwise we need to house *all* defaults, like the interface naming policy ones, too. This can be fine for one release, but easily overlooked if those, or other important fall-back defaults change. A user can now also easier override this, e.g., by simply adding a drop-in file in the respective /etc path. Fixes failure to rename network names to "predictable" names on boot as reported in the forum: https://forum.proxmox.com/threads/135635/page-6#post-606130 Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
20 lines
839 B
Makefile
20 lines
839 B
Makefile
include ../defines.mk
|
|
|
|
all: country.dat
|
|
|
|
country.dat: country.pl
|
|
./country.pl > country.dat
|
|
|
|
.PHONY: install
|
|
install: country.dat vzdump.conf pve-sources.list pve-initramfs.conf pve-blacklist.conf pve.logrotate
|
|
install -D -m 0644 pve.logrotate $(DESTDIR)/etc/logrotate.d/pve
|
|
install -D -m 0644 pve-sources.list $(DESTDIR)/etc/apt/sources.list.d/pve-enterprise.list
|
|
install -D -m 0644 pve-blacklist.conf $(DESTDIR)/etc/modprobe.d/pve-blacklist.conf
|
|
install -D -m 0644 vzdump.conf $(DESTDIR)/etc/vzdump.conf
|
|
install -D -m 0644 pve-initramfs.conf $(DESTDIR)/etc/initramfs-tools/conf.d/pve-initramfs.conf
|
|
install -D -m 0644 country.dat $(DESTDIR)/usr/share/$(PACKAGE)/country.dat
|
|
install -D -m 0644 proxmox-ve-default.link $(DESTDIR)/usr/lib/systemd/network/99-default.link.d/proxmox-mac-address-policy.conf
|
|
|
|
clean:
|
|
rm -f country.dat
|