作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将文件写入磁盘作为 ExecStartPre
的一部分systemd 单元文件的命令。
这就是我正在使用的:
[Unit]
Description=My service
[Service]
Restart=always
StartLimitInterval=0
ExecStartPre=/usr/bin/cat <<EOFDefaults > /tmp/test
option1=value1
option2=value2
EOFDefaults
ExecStart=/run/some/command
systemd-analyze verify myservice.service
测试时出现以下错误.
[Unit]
Description=My service
[Service]
Restart=always
StartLimitInterval=0
ExecStartPre=/usr/bin/cat <<EOFDefaults > /tmp/test \
option1=value1 \
option2=value2 \
EOFDefaults
ExecStart=/run/some/command
Invalid escape sequences in command line:
最佳答案
你没有。
请参阅 Command lines 上的文档部分:
This syntax is intended to be very similar to shell syntax, but only the meta-characters and expansions described in the following paragraphs are understood. Specifically, redirection using "<", "<<", ">", and ">>", pipes using "|", running programs in the background using "&", and other elements of shell syntax are not supported.
ExecStartPre=/bin/sh -c '/usr/bin/cat <<EOFDefaults > /tmp/test \
option1=value1 \
option2=value2 \
EOFDefaults'
关于systemd - 如何将多行内容转换为 systemd 单元文件中的文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32249242/
我是一名优秀的程序员,十分优秀!