diff options
author | mail_redacted_for_web | 2025-03-23 07:41:16 +0100 |
---|---|---|
committer | mail_redacted_for_web | 2025-03-23 07:41:16 +0100 |
commit | fd4c7d2dd302cd64cec57c74536d4dbcada2941d (patch) | |
tree | 3167d643936139469b101e4cb321035db6bdc994 /aptly/Makefile | |
parent | 824c989a0ea25476ece334e97b2c8c3026301650 (diff) | |
download | packages.lirion.de-fd4c7d2dd302cd64cec57c74536d4dbcada2941d.tar.bz2 |
Rename repo to packages.lirion.de, move aptly stuff to aptly subfolder
Diffstat (limited to 'aptly/Makefile')
-rw-r--r-- | aptly/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/aptly/Makefile b/aptly/Makefile new file mode 100644 index 0000000..bd29cbb --- /dev/null +++ b/aptly/Makefile @@ -0,0 +1,21 @@ +all: + + +install: copy-etc copy-bin + + +copy-etc: mkdir-etc + @if [ ! -e /etc/aptly-lirionde/aptly.conf ]; then \ + install -vpm0644 -oroot -groot -t /etc/lirion/aptly.conf ./etc/aptly-lirionde.conf; \ + else printf '/etc/lirion/aptly.conf existing, skipping.\n'; \ + fi + +mkdir-etc: + @install -dvm0755 -oroot -groot /etc/lirion + + +copy-bin: + @install -vpm0755 -oroot -groot -t /usr/bin bin/aptly-lirionde + + +.PHONY: mkdir-etc copy-etc copy-bin |