Skip to content
Snippets Groups Projects
static@.service 417 B
Newer Older
[Unit]
Description=%p-%i
Pierre Ozoux's avatar
Pierre Ozoux committed

# Requirements
Pierre Ozoux's avatar
Pierre Ozoux committed
Requires=web@%i.service
Pierre Ozoux's avatar
Pierre Ozoux committed

# Dependency ordering
Pierre Ozoux's avatar
Pierre Ozoux committed
Before=web@%i.service
Pierre Ozoux's avatar
Pierre Ozoux committed
Type=oneshot
RemainAfterExit=yes
Pierre Ozoux's avatar
Pierre Ozoux committed
ExecStart=/bin/bash -euxc ' \
  application_folder=/data/domains/%i/%p/www-content; \
  if [ ! -d $application_folder ]; then \
    mkdir -p $application_folder; \
    echo Hello %i > $application_folder/index.html; \
[Install]
WantedBy=multi-user.target
Pierre Ozoux's avatar
Pierre Ozoux committed