forked from Mirrors/freeswitch
12e90ce989
This changes how we create the temporary directory /run/freeswitch when starting FS with systemd. The /run directory starts empty after a system reboot, so we need to ensure this directory is present. Originally for the FS systemd unit we created /run/freeswitch using ExecStartPre and mkdir. With commitadb5f0d
this was changed to use the tmpfiles.d(5) mechanism (but the ExecStartPre/mkdir code was not removed). As part of systemd.exec(5), systemd provides a mechanism to automatically manage these directories under /run and to bind their lifetime to the lifetime of the process. This is actually what we want here as compared to the more general tmpfiles.d(5) mechanism. This commit moves to using the RuntimeDirectory= mechanism and removes the obsolete ExecStartPre/mkdir code. References-commit:adb5f0d278
2 lines
39 B
Plaintext
2 lines
39 B
Plaintext
/lib/systemd/system/freeswitch.service
|