remove .service/.target/.bundle etc suffixes on service names

they don't seem to be providing value
This commit is contained in:
Daniel Barlow 2022-09-27 22:35:29 +01:00
parent 2e13f1372e
commit 0632b5102e
5 changed files with 12 additions and 10 deletions

View file

@ -13,10 +13,10 @@ cd $dest_path;
db=nix/store/*-s6-rc-database/compiled/
test -d $db
chmod -R +w $db
# check we have closure of config.services (lo.link.service exists only
# check we have closure of config.services (lo.link service exists only
# as a dependency)
test "$(s6-rc-db -c $db type lo.link.service)" = "oneshot"
test "$(s6-rc-db -c $db type ntp.service)" = "longrun"
test "$(s6-rc-db -c $db type lo.link)" = "oneshot"
test "$(s6-rc-db -c $db type ntp)" = "longrun"
echo OK
EOF
)