Fixes: ab932a622d57 ("core: simplify unit_need_daemon_reload() a bit")
Fixes #35710
Co-authored-by: Jian Wen <wenjianhn@gmail.com>
if (r < 0)
return r;
- r = strv_push(&u->dropin_paths, q);
+ _cleanup_strv_free_ char **dropins = NULL;
+ r = unit_find_dropin_paths(u, /* use_unit_path_cache= */ true, &dropins);
if (r < 0)
return r;
- q = NULL;
-
- strv_uniq(u->dropin_paths);
+ strv_free_and_replace(u->dropin_paths, dropins);
u->dropin_mtime = now(CLOCK_REALTIME);
clear_units test15-a.service
}
+testcase_order_dropin_paths_set_property() {
+ # For issue #35710.
+ echo "Testing the order of dropin paths that are created by set-property"
+
+ create_service test15-a
+ systemctl set-property test15-a DevicePolicy=strict DeviceAllow="char-* m"
+ check_ok test15-a NeedDaemonReload no
+
+ clear_units test15-a.service
+}
+
run_testcases
touch /testok