checkClientTools verifies that NFS client packages are installed.
()
| 418 | |
| 419 | // checkClientTools verifies that NFS client packages are installed. |
| 420 | func checkClientTools() error { |
| 421 | return buildtools.CheckSystemTools([]string{ |
| 422 | "apt:nfs-common", |
| 423 | "yum:nfs-utils", |
| 424 | }) |
| 425 | } |
| 426 | |
| 427 | // createSystemGroupAndUser creates the celer system user/group if it does not already exist. |
| 428 | // If requiredGID is set, the group must use that numeric gid. |
no test coverage detected