sysuser-tools/sysusers-generate-pre
Thorsten Kukuk 69b475fe74 - sysuser-shadow: remove systemd 238 dependency, this does not
work in a single RPM transaction [bsc#1234277]. Call
  systemd-sysuser instead again without --replace.

OBS-URL: https://build.opensuse.org/package/show/Base:System/sysuser-tools?expand=0&rev=62
2024-12-09 06:28:19 +00:00

7 lines
225 B
Bash

#!/bin/bash
# pass systemd sysusers config paths as argument to this script.
echo "/usr/sbin/sysusers2shadow $2 <<\"EOF\""
(while read -r line; do if [[ $line =~ ^\s*[ugmr] ]]; then echo "$line"; fi; done) < "$1"
echo 'EOF'