bundles/docker-immich: only start auto-album-share when postgresql is actually running
This commit is contained in:
parent
3bcf7ad714
commit
7b51bb57f8
2 changed files with 8 additions and 2 deletions
|
@ -7,8 +7,11 @@
|
|||
[Unit]
|
||||
Description=Service for Timer ${timer}
|
||||
After=network.target
|
||||
% if config.get('requires', ''):
|
||||
Requires=${config['requires']}
|
||||
% if config.get('requires', set()):
|
||||
Requires=${' '.join(sorted(config['requires']))}
|
||||
% endif
|
||||
% if config.get('requisite', set()):
|
||||
Requisite=${' '.join(sorted(config['requisite']))}
|
||||
% endif
|
||||
|
||||
[Service]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue