forked from dan/liminix
1
0
Fork 0

exit 0 on service down even if no outputs to delete

This commit is contained in:
Daniel Barlow 2023-11-21 17:25:50 +00:00
parent e5223f093f
commit c8b2d58dd3
1 changed files with 1 additions and 2 deletions

View File

@ -18,8 +18,7 @@ let
${commands} ${commands}
''; '';
cleanupScript = name : '' cleanupScript = name : ''
#!/bin/sh if test -d ${prefix}/${name} ; then rm -rf ${prefix}/${name} ; fi
test -d ${prefix}/${name} && rm -rf ${prefix}/${name}
''; '';
service = { service = {
name name