diff options
author | David Oberhollenzer <david.oberhollenzer@tele2.at> | 2018-04-11 23:01:35 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@tele2.at> | 2018-04-11 23:01:35 +0200 |
commit | 38ad6f1b2f8137226382a2a029ba37f1a173807a (patch) | |
tree | e1a479b9db60d79b5a99d26921a1a5d47e94a6e2 /services/tmpfsrun.in | |
parent | 20e08db1a5d8d43ed5faaa1063c60eca62715ec5 (diff) |
Allow aggregating command lines in blocks
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
Diffstat (limited to 'services/tmpfsrun.in')
-rw-r--r-- | services/tmpfsrun.in | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/services/tmpfsrun.in b/services/tmpfsrun.in index c34eccb..c88a914 100644 --- a/services/tmpfsrun.in +++ b/services/tmpfsrun.in @@ -3,7 +3,9 @@ type wait target boot before vfs after tmpfsvar -exec "@SBINPATH@/mount" -t tmpfs none /run -exec "@BINPATH@/mkdir" /run/lock -m 0755 -exec "@BINPATH@/ln" -s /run /var/run -exec "@BINPATH@/ln" -s /run/lock /var/lock +exec { + "@SBINPATH@/mount" -t tmpfs none /run + "@BINPATH@/mkdir" /run/lock -m 0755 + "@BINPATH@/ln" -s /run /var/run + "@BINPATH@/ln" -s /run/lock /var/lock +} |