mirror of
https://git.proxmox.com/git/pve-docs
synced 2025-05-01 19:57:48 +00:00

The apache pve-docs.conf sites-available entry wasn't installed to the staging directory but the running system.
15 lines
280 B
Makefile
Executable File
15 lines
280 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
PACKAGE=pve-docs
|
|
destdir := $(CURDIR)/debian/$(PACKAGE)
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_install:
|
|
dh_install
|
|
install -D -m 0644 debian/pve-docs.conf $(destdir)/etc/apache2/sites-available/pve-docs.conf
|