--disable-wtmpx \
--disable-strip
-define OPENSSH_USERS
- sshd -1 sshd -1 * - - - SSH drop priv user
-endef
-
define OPENSSH_PERMISSIONS
/var/empty d 755 root root - - - - -
endef
OPENSSH_CONF_OPTS += --without-selinux
endif
+ifeq ($(BR2_PACKAGE_SYSTEMD_SYSUSERS),y)
+define OPENSSH_INSTALL_SYSTEMD_SYSUSERS
+ $(INSTALL) -m 0644 -D package/openssh/sshd-sysusers.conf \
+ $(TARGET_DIR)/usr/lib/sysusers.d/sshd.conf
+endef
+else
+define OPENSSH_USERS
+ sshd -1 sshd -1 * /var/empty - - SSH drop priv user
+endef
+endif
+
define OPENSSH_INSTALL_INIT_SYSTEMD
$(INSTALL) -D -m 644 package/openssh/sshd.service \
$(TARGET_DIR)/usr/lib/systemd/system/sshd.service
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
ln -fs ../../../../usr/lib/systemd/system/sshd.service \
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/sshd.service
+ $(OPENSSH_INSTALL_SYSTEMD_SYSUSERS)
endef
define OPENSSH_INSTALL_INIT_SYSV