You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
346 B
5 lines
346 B
# PostgreSQL initialization scripts
|
|
TARGET_POSTGRESQL_FILES = $(patsubst other/postgresql/%, $(TARGET_CHROOT)/etc/quadlets/postgresql/init.d/%, $(wildcard other/postgresql/*))
|
|
TARGET_EXAMPLE_FILES += $(TARGET_POSTGRESQL_FILES)
|
|
$(TARGET_CHROOT)/etc/quadlets/postgresql/init.d/%.sql: other/postgresql/%.sql
|
|
install -m 0600 -o 10004 -g 10000 $< $@
|
|
|