I tested this with 'sudo dnf --installroot=…', with both systemd+system-udev installed in one transaction, and in two separate transactions. Users are created as expected in both cases.
		
			
				
	
	
		
			100 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #  -*- Mode: rpm-spec; indent-tabs-mode: nil -*- */
 | |
| #  SPDX-License-Identifier: LGPL-2.1-or-later
 | |
| #
 | |
| #  This file is part of systemd.
 | |
| #
 | |
| #  Copyright 2018 Neal Gompa
 | |
| 
 | |
| # The contents of this are an example to be copied into systemd.spec.
 | |
| #
 | |
| # Minimum rpm version supported: 4.14.0
 | |
| 
 | |
| %transfiletriggerin -P 900900 -- /usr/lib/systemd/system /etc/systemd/system
 | |
| # This script will run after any package is initially installed or
 | |
| # upgraded. We care about the case where a package is initially
 | |
| # installed, because other cases are covered by the *un scriptlets,
 | |
| # so sometimes we will reload needlessly.
 | |
| /usr/lib/systemd/systemd-update-helper system-reload-restart || :
 | |
| 
 | |
| %transfiletriggerin -P 900899 -- /usr/lib/systemd/user /etc/systemd/user
 | |
| if selinuxenabled &>/dev/null; then
 | |
|   /usr/lib/systemd/systemd-update-helper user-reload-restart 2>/dev/null || :
 | |
| else
 | |
|   /usr/lib/systemd/systemd-update-helper user-reload-restart || :
 | |
| fi
 | |
| 
 | |
| %transfiletriggerpostun -P 1000100 -- /usr/lib/systemd/system /etc/systemd/system
 | |
| # On removal, we need to run daemon-reload after any units have been
 | |
| # removed.
 | |
| # On upgrade, we need to run daemon-reload after any new unit files
 | |
| # have been installed, but before %postun scripts in packages get
 | |
| # executed.
 | |
| /usr/lib/systemd/systemd-update-helper system-reload || :
 | |
| 
 | |
| %transfiletriggerpostun -P 1000099 -- /usr/lib/systemd/user /etc/systemd/user
 | |
| # Execute daemon-reload in user managers.
 | |
| if selinuxenabled &>/dev/null; then
 | |
|   /usr/lib/systemd/systemd-update-helper user-reload 2>/dev/null || :
 | |
| else
 | |
|   /usr/lib/systemd/systemd-update-helper user-reload || :
 | |
| fi
 | |
| 
 | |
| %transfiletriggerpostun -P 10000 -- /usr/lib/systemd/system /etc/systemd/system
 | |
| # We restart remaining system services that should be restarted here.
 | |
| /usr/lib/systemd/systemd-update-helper system-restart || :
 | |
| 
 | |
| %transfiletriggerpostun -P  9999 -- /usr/lib/systemd/user /etc/systemd/user
 | |
| # We restart remaining user services that should be restarted here.
 | |
| if selinuxenabled &>/dev/null; then
 | |
|   /usr/lib/systemd/systemd-update-helper user-restart 2>/dev/null || :
 | |
| else
 | |
|   /usr/lib/systemd/systemd-update-helper user-restart || :
 | |
| fi
 | |
| 
 | |
| %transfiletriggerin -P 1000700 -- /usr/lib/sysusers.d
 | |
| # This script will process files installed in /usr/lib/sysusers.d to create
 | |
| # specified users automatically. The priority is set such that it
 | |
| # will run before the tmpfiles file trigger.
 | |
| systemd-sysusers || :
 | |
| 
 | |
| %transfiletriggerin -P 1000700 udev -- /usr/lib/udev/hwdb.d
 | |
| # This script will automatically invoke hwdb update if files have been
 | |
| # installed or updated in /usr/lib/udev/hwdb.d.
 | |
| systemd-hwdb update || :
 | |
| 
 | |
| %transfiletriggerin -P 1000700 -- /usr/lib/systemd/catalog
 | |
| # This script will automatically invoke journal catalog update if files
 | |
| # have been installed or updated in /usr/lib/systemd/catalog.
 | |
| journalctl --update-catalog || :
 | |
| 
 | |
| %transfiletriggerin -P 1000700 -- /usr/lib/binfmt.d
 | |
| # This script will automatically apply binfmt rules if files have been
 | |
| # installed or updated in /usr/lib/binfmt.d.
 | |
| if test -d "/run/systemd/system"; then
 | |
|   # systemd-binfmt might fail if binfmt_misc kernel module is not loaded
 | |
|   # during install
 | |
|   /usr/lib/systemd/systemd-binfmt || :
 | |
| fi
 | |
| 
 | |
| %transfiletriggerin -P 1000600 -- /usr/lib/tmpfiles.d
 | |
| # This script will process files installed in /usr/lib/tmpfiles.d to create
 | |
| # tmpfiles automatically. The priority is set such that it will run
 | |
| # after the sysusers file trigger, but before any other triggers.
 | |
| if test -d "/run/systemd/system"; then
 | |
|   systemd-tmpfiles --create || :
 | |
| fi
 | |
| 
 | |
| %transfiletriggerin -P 1000600 udev -- /usr/lib/udev/rules.d
 | |
| # This script will automatically update udev with new rules if files
 | |
| # have been installed or updated in /usr/lib/udev/rules.d.
 | |
| if test -e /run/udev/control; then
 | |
|   udevadm control --reload || :
 | |
| fi
 | |
| 
 | |
| %transfiletriggerin -P 1000500 -- /usr/lib/sysctl.d
 | |
| # This script will automatically apply sysctl rules if files have been
 | |
| # installed or updated in /usr/lib/sysctl.d.
 | |
| if test -d "/run/systemd/system"; then
 | |
|   /usr/lib/systemd/systemd-sysctl || :
 | |
| fi
 |