应用目录后 Puppet 输出中的符号 @ 是什么意思

What does the symbol @ mean in Puppet output after applying a catalog

我在一台机器上应用一个目录,在第一个 运行 它 returns 以下输出(只是一部分)。

我知道以 less 符号开头的行已被删除,而以加号开头的行已添加,但是 @ 是什么意思?

-#  /etc/rsyslog.conf   Configuration file for rsyslog.
+#  /etc/rsyslog.conf   Configuration file for rsyslog v3.
 #
-#          For more information see
+#          For more information see 
 #          /usr/share/doc/rsyslog-doc/html/rsyslog_conf.html


@@ -9,7 +9,7 @@
 #################

 $ModLoad imuxsock # provides support for local system logging
-$ModLoad imklog   # provides kernel logging support
+$ModLoad imklog   # provides kernel logging support (previously done by rklogd) 
 #$ModLoad immark  # provides --MARK-- message capability

 # provides UDP syslog reception
@@ -38,12 +38,6 @@
 $FileGroup adm
 $FileCreateMode 0640
 $DirCreateMode 0755
-$Umask 0022
-
-#
-# Where to place spool and state files
-#
-$WorkDirectory /var/spool/rsyslog

 #
 # Include all config files in /etc/rsyslog.d/
@@ -58,6 +52,8 @@

Obs:我在这台机器上安装了 etckeeper 运行ning。有没有可能有什么关系?

提前致谢。

@@ .. @@ headers 是 (c)hunk headers 并提供范围信息。

详情在这里:http://en.wikipedia.org/wiki/Diff#Unified_format

格式为:

@@ -l,s +l,s @@


l : starting line number

s : number of lines the change applies to

- : original file

+ : modified or new file

这与您在 git diff.

中看到的语法相同