diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-09-10 16:23:30 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-09-10 16:23:30 -0400 |
commit | 075426989bd00ee7af444ad991dfd01f3e5d50c5 (patch) | |
tree | c5c0c1df945ca10bf4be36d25015061a8dedfbf3 | |
parent | 844bd03665e3ae47b872f33bd6d4146c1051067b (diff) |
more
-rwxr-xr-x | tools/move.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/move.sh b/tools/move.sh index dbcddae64e..be2c8cb11c 100755 --- a/tools/move.sh +++ b/tools/move.sh @@ -435,6 +435,7 @@ move_files() ( mv -T {test,src/systemd-boot}/test-efi-create-disk.sh mv -t src/systemd-tmpfiles units/systemd-tmpfiles* mv -t src/systemd-tmpfiles \ + tmpfiles.d/tmp.* \ tmpfiles.d/var.* \ tmpfiles.d/etc.* \ tmpfiles.d/home.* \ @@ -466,6 +467,7 @@ move_files() ( mv -t src/grp-remote.d tmpfiles.d/systemd-remote.* mv -T tmpfiles.d/systemd{,-journald}.tmpfiles.m4 mv -t src/systemd tmpfiles.d/systemd-tmpfs.tmpfiles* + mv -t src/systemd xorg/??-systemd-user.sh; rmdir xorg # auto-distribute the stuff for d in man units sysusers.d tmpfiles.d; do @@ -620,6 +622,15 @@ move_files() ( src/systemd-notify \ src/systemd-path \ src/systemd-socket-activate + + mv -t src/systemd-timesyncd system-preset/??-timesyncd.preset + for file in system-preset/??-*.preset; do + base="${file##*/??-}" + base="${base%.preset}" + base="${base%d}" + mv -t src/grp-"$base" "$file" + done + rmdir system-preset ) breakup_makefile() ( |