You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
523 B
16 lines
523 B
[Unit]
|
|
Description=Seafile virtual drive
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStart=/usr/bin/seadrive -c /etc/seadrive/{{ item.id }}.conf -d {{ item.data_dir | default('/var/cache/seadrive/' + item.id) }} -o {{ item.fuse_opts | default(['allow_other']) | join(',') }} -f -l - {{ item.drive_dir }}
|
|
ExecStopPost=/bin/fusermount -uz {{ item.drive_dir }}
|
|
RestartSec=5
|
|
User={{ item.user | default('root') }}
|
|
MemoryLimit=1024M
|
|
SyslogIdentifier=seadrive-{{ item.id }}
|
|
Restart=always
|
|
LimitNOFILE=100000
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|