0

我正在尝试使用 Augeas 来声明/确保 fstab 中存在特定的挂载点。如果它已经存在,请确保它具有这些 $settings,否则创建一个新行。

但我还没有能够做到这一点。我可以让它修改现有的行,我可以让它添加一个新行。但不是两者,如(伪代码):

if (line_exists) {
    check_and_modify_line()
} else {
    create_new_line()
}

check_and_modify_line(),这有效:

set /files/etc/fstab/*[file="/mnt/ISO"]/file "/mnt/ISO"
set /files/etc/fstab/*[file="/mnt/ISO"]/spec "nas:/ISO/iso"
set /files/etc/fstab/*[file="/mnt/ISO"]/vfstype "nfs"
set /files/etc/fstab/*[file="/mnt/ISO"]/opt "intr"
set /files/etc/fstab/*[file="/mnt/ISO"]/dump "0"
set /files/etc/fstab/*[file="/mnt/ISO"]/passno "0"

create_new_line(),这有效:

set /files/etc/fstab/01/spec "nas:/ISO/iso"
set /files/etc/fstab/01/file "/mnt/ISO"
set /files/etc/fstab/01/vfstype "nfs"
set /files/etc/fstab/01/opt[1] "intr"
set /files/etc/fstab/01/dump "0"
set /files/etc/fstab/01/passno "0"

但是将上述两个部分组合成一个部分的秘诀让我难以理解。而且我认为 Augeas 应该是声明性/幂等的,所以我不能告诉 Augeas 让我很惊讶:“确保这条线存在”。

似乎也没有任何 if/then/else 样式块,因为那时我可以:

if match /files/etc/fstab/*[file="/mnt/ISO"]
    defnode isonode /files/etc/fstab/*[file="/mnt/ISO"]
else
    defnode isonode /files/etc/fstab/01

set $isnode/file "/mnt/ISO"
set $isnode/bla "bla-bla"

有没有办法在一组“设置”操作或单个 .aug 文件中完成这一切,所以我可以运行一个:

sudo augtool < mountpoint.aug

当然,我可以使用一些带有互斥onlyif-s 的 augeas puppet 资源,或者使用 bash 或 perl 中的包装器以及 grep、sed 等的某种组合,但是我不妨坚持完全使用它而不是 Augeas ......

顺便问一下,有没有比小游更全面的官方文档来使用Augeas ?整个文档似乎是专门针对新镜头开发人员的,而不是针对可能更多的镜头用户

4

1 回答 1

0

如果您不想为条件句使用更高级别的语言(C、ruby、perl、php 等),您可以defvar为此目的使用:

#!/usr/bin/augtool -Asf

# The -A combined with this makes things much faster
# by loading only the required lens/file
transform Fstab.lns incl /etc/fstab
load

# $noentry will match /files/etc/fstab only if the entry isn't there yet
defvar noentry /files/etc/fstab[count(*[file="/mnt/ISO"])=0]

# Create the entry if it's missing
set $noentry/01/spec "nas:/ISO/iso"
set $noentry/01/file "/mnt/ISO"

# Now amend existing entry or finish creating the missing one
defvar entry /files/etc/fstab/*[file="/mnt/ISO"]

set $entry/spec "nas:/ISO/iso"
set $entry/vfstype "nfs"
set $entry/opt "intr"
set $entry/dump "0"
set $entry/passno "0"

作为说明,我目前正在 Augeas 中支持 Lua(请参阅https://github.com/hercules-team/augeas/pull/300),因此下一个版本很可能允许编写类似这样的内容(虽然语法可能仍然会改变):

#!/usr/bin/augtool -lAsf
--- pass the spec as spec=<spec>
--- pass the file as mount=<mount>

spec = os.getenv("spec")
mount = os.getenv("mount")

transform("Fstab.lns", "/etc/fstab", false)
load()

file_path = "etc/fstab/*[file='" .. mount .. "']"
if (aug_matches(file_path) == 0) then
  defnode("file", "etc/fstab/01", nil)
  set("$file/spec", spec)
  set("$file/file", mount)
else
  defvar("file", file_path)
end

set("$file/spec", spec)
set("$file/vfstype", "nfs")
set("$file/opt", "intr")
set("$file/dump", "0")
set("$file/passno", "0")

然后可以称为:

mount=/mnt/ISO spec=nas:/ISO/iso ./aug.lua
于 2015-09-16T06:49:04.617 回答