Skip to content

Commit

Permalink
rename config.ini -> lavinmq.ini and update references to it (#664)
Browse files Browse the repository at this point in the history
Renames config.ini -> lavinmq.ini to avoid confusion.
  • Loading branch information
viktorerlingsson authored Apr 23, 2024
1 parent 87d440a commit 7d610ec
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.deb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN apt-get install -y devscripts nodejs help2man lintian debhelper liblz4-dev
ARG version
WORKDIR /usr/src/lavinmq_${version}
COPY Makefile README.md LICENSE NOTICE CHANGELOG.md shard.yml shard.lock ./
COPY extras/lavinmq.service extras/config.ini extras/
COPY extras/lavinmq.service extras/lavinmq.ini extras/
COPY openapi/ openapi/
COPY static/ static/
COPY views/ views/
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.rpm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN sed -i -E "s/^(Version:).*/\1 $version/" /root/rpmbuild/SPECS/lavinmq.spec
RUN rpmlint /root/rpmbuild/SPECS/lavinmq.spec
WORKDIR /usr/src/lavinmq
COPY Makefile README.md LICENSE NOTICE CHANGELOG.md shard.yml shard.lock ./
COPY extras/lavinmq.service extras/config.ini extras/
COPY extras/lavinmq.service extras/lavinmq.ini extras/
COPY openapi/ openapi/
COPY static/ static/
COPY views/ views/
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ UNITDIR := /lib/systemd/system
SHAREDSTATEDIR := /var/lib

.PHONY: install
install: $(BINS) $(MANPAGES) extras/config.ini extras/lavinmq.service README.md CHANGELOG.md NOTICE
install: $(BINS) $(MANPAGES) extras/lavinmq.ini extras/lavinmq.service README.md CHANGELOG.md NOTICE
install -D -m 0755 -t $(DESTDIR)$(BINDIR) $(BINS)
install -D -m 0644 -t $(DESTDIR)$(MANDIR)/man1 $(MANPAGES)
install -D -m 0644 extras/config.ini $(DESTDIR)$(SYSCONFDIR)/lavinmq/lavinmq.ini
install -D -m 0644 extras/lavinmq.ini $(DESTDIR)$(SYSCONFDIR)/lavinmq/lavinmq.ini
install -D -m 0644 extras/lavinmq.service $(DESTDIR)$(UNITDIR)/lavinmq.service
install -D -m 0644 -t $(DESTDIR)$(DOCDIR)/lavinmq README.md NOTICE
install -D -m 0644 CHANGELOG.md $(DESTDIR)$(DOCDIR)/lavinmq/changelog
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Run LavinMQ with:
`lavinmq -D /var/lib/lavinmq`

More configuration options can be viewed with `-h`,
and you can specify a configuration file too, see [extras/config.ini](extras/config.ini)
and you can specify a configuration file too, see [extras/lavinmq.ini](extras/lavinmq.ini)
for an example.

## Docker
Expand Down
File renamed without changes.

0 comments on commit 7d610ec

Please sign in to comment.