Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
schaufel (0.12.1) unstable; urgency=low

* debian/schaufel@.service: fix error in service template

-- DevOps <devops@adjust.com> Wed, 27 Aug 2025 14:27:32 +0000

schaufel (0.12) unstable; urgency=low

* debian/rules: change the service file name
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ OBJ_BIN_TEST = $(patsubst t/%.c, $(OBJDIR)/%.o, $(TEST_SOURCES))

DOCS = $(patsubst man/%, doc/%.pdf , $(wildcard man/*))

SCHAUFEL_VERSION ?= 0.12
SCHAUFEL_VERSION ?= 0.12.1

ARCH = $(shell uname -m)
OS_ID = $(shell cat /etc/os-release | awk -F= '{if ($$1=="ID") print $$2}')
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AC_PREREQ([2.62])
AC_CONFIG_MACRO_DIR(m4)
AC_INIT([schaufel], [0.12], [ops@adjust.com], [https://github.com/adjust/schaufel])
AC_INIT([schaufel], [0.12.1], [ops@adjust.com], [https://github.com/adjust/schaufel])
AM_INIT_AUTOMAKE([subdir-objects])

############################################################
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Build-Depends: debhelper (>= 12),
libjson-c-dev,
libpq-dev,
librdkafka-dev
Standards-Version: 0.12
Standards-Version: 0.12.1

Package: schaufel
Architecture: any
Expand Down
4 changes: 2 additions & 2 deletions debian/schaufel@.service
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ After=network.target
WorkingDirectory=/var/lib/schaufel
User=schaufel
Group=schaufel
SyslogIdentifier=%p
SyslogIdentifier=%p_%i

## systemd.service
Type=simple
ExecStart=/usr/bin/schaufel -l /var/log/schaufel/%p.log -C /etc/schaufel/%p.conf
ExecStart=/usr/bin/schaufel -l /var/log/schaufel/%i.log -C /etc/schaufel/%i.conf
Restart=no
SuccessExitStatus=0
TimeoutStopSec=1800
Expand Down