Skip to content

Commit cd7a23a

Browse files
committed
Rename existence plugins to check names
1 parent 3435cfe commit cd7a23a

20 files changed

Lines changed: 141 additions & 141 deletions

docs/guides/account-access.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ SPDX-License-Identifier: AGPL-3.0-or-later
77

88
Automax includes account access plugins for common Linux operator tasks:
99

10-
- `identity.user.exists`, `identity.user.lock`, `identity.user.unlock`, `identity.user.set_password`
11-
- `identity.group.exists`
10+
- `identity.user.check`, `identity.user.lock`, `identity.user.unlock`, `identity.user.set_password`
11+
- `identity.group.check`
1212
- `security.ssh.authorized_key.add`
1313
- `security.sudo.dropin`
1414

docs/guides/ssh-smoke.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ The default smoke is non-destructive and should be safe for an unprivileged
4343
remote user. It covers:
4444

4545
- `command.remote.run`
46-
- `fs.dir.create`, `fs.dir.remove`, `fs.dir.exists`, `fs.dir.wait`
47-
- `fs.file.exists`, `fs.file.wait`, `fs.cd`, `fs.file.write`, `fs.file.read`, `fs.object.stat`
46+
- `fs.dir.create`, `fs.dir.remove`, `fs.dir.check`, `fs.dir.wait`
47+
- `fs.file.check`, `fs.file.wait`, `fs.cd`, `fs.file.write`, `fs.file.read`, `fs.object.stat`
4848
- `fs.file.line`, `fs.file.replace`, `fs.object.copy`, `fs.object.move`, `fs.symlink.create`, `fs.symlink.remove`
4949
- `fs.object.find`, `fs.permission.mode`
5050
- `data.archive.tar.create`, `data.archive.tar.extract`, `data.archive.zip.create`, `data.archive.zip.extract`

docs/plugins/filesystem.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ only, including broken symlinks.
1818
```text
1919
fs.dir.create # create a real directory
2020
fs.dir.remove # remove a real directory; recursive=true removes non-empty trees
21-
fs.dir.exists # report whether a real directory exists; fail on wrong type
21+
fs.dir.check # report whether a real directory exists; fail on wrong type
2222
fs.dir.wait # wait for a real directory to be present or absent
2323
2424
fs.file.create # create a real regular file
2525
fs.file.remove # remove a real regular file; fail on directories/symlinks
26-
fs.file.exists # report whether a real regular file exists; fail on wrong type
26+
fs.file.check # report whether a real regular file exists; fail on wrong type
2727
fs.file.wait # wait for a real regular file to be present or absent
2828
2929
fs.symlink.create # create or update a symlink
3030
fs.symlink.remove # remove a symlink; fail on files/directories
31-
fs.symlink.exists # report whether a symlink exists; fail on wrong type
31+
fs.symlink.check # report whether a symlink exists; fail on wrong type
3232
fs.symlink.wait # wait for a symlink to be present or absent
3333
```
3434

0 commit comments

Comments
 (0)