summaryrefslogtreecommitdiff
path: root/src/unit-name.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unit-name.c')
-rw-r--r--src/unit-name.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/unit-name.c b/src/unit-name.c
index cd6e3cea5c..dbaa4a7b12 100644
--- a/src/unit-name.c
+++ b/src/unit-name.c
@@ -377,6 +377,30 @@ char *unit_name_from_path(const char *path, const char *suffix) {
return r;
}
+char *unit_name_from_path_instance(const char *prefix, const char *path, const char *suffix) {
+ char *p, *r;
+
+ assert(path);
+ assert(suffix);
+
+ if (!(p = strdup(path)))
+ return NULL;
+
+ path_kill_slashes(p);
+
+ path = p[0] == '/' ? p + 1 : p;
+
+ if (path[0] == 0) {
+ free(p);
+ return unit_name_build_escape(prefix, "-", suffix);
+ }
+
+ r = unit_name_build_escape(prefix, path, suffix);
+ free(p);
+
+ return r;
+}
+
char *unit_name_to_path(const char *name) {
char *w, *e;