Sah-SchemaBundle-Unix

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN


    *   unix::gid::exists

        Group identifier (GID) that has to exist on the system.

        Existing means having a group name associated with this GID, i.e.
        "getgrgid" returns a record.

        Support coercion from an existing group name.

    *   unix::groupname

        Unix group name.

        The checking follows POSIX rules: does not begin with a hyphen and
        only contains [A-Za-z0-9._-].

        The above rule allows integers like 1234, which can be confused with
        GID, so this schema disallows pure integers.

        The maximum length is 32 following libc6's limit.

        Note that this schema does not check whether the group name exists
        (has record in the user database e.g. "/etc/group"). To do that, use
        the "unix::groupname::exists" schema.

    *   unix::groupname::exists

        Unix group name that must exist on the system.

        Support coercion from GID.

    *   unix::pathname

        Path name (filename or dirname) on a Unix system.

        This is just a convenient alias for pathname::unix.

    *   unix::pid

        Process identifier (PID).

    *   unix::signal

        Unix signal name (e.g. TERM or KILL) or number (9 or 15).

    *   unix::uid

        User identifier (UID).

        Note that this schema does not check whether the UID exists (has
        record in the user database e.g. "/etc/passwd"). To do that, use the
        "unix::uid::exists" schema.

    *   unix::uid::exists

        User identifier (UID) that has to exist (has associated username) on
        the system.

        Existing means having a user name associated with this UID, i.e.
        "getpwuid" returns a record.

        Support coercion from an existing user name.

    *   unix::username

        Unix account name.

        The checking follows POSIX rules: does not begin with a hyphen and
        only contains [A-Za-z0-9._-].

        The above rule allows integers like 1234, which can be confused with
        UID, so this schema disallows pure integers.

        The maximum length is 32 following libc6's limit.

        Note that this schema does not check whether the user name exists
        (has record in the user database e.g. "/etc/group"). To do that, use
        the "unix::username::exists" schema.

    *   unix::username::exists

        Unix user name that must exist on the system.

        Support coercion from UID.

HOMEPAGE
    Please visit the project's homepage at
    <https://metacpan.org/release/Sah-SchemaBundle-Unix>.

SOURCE
    Source repository is at
    <https://github.com/perlancar/perl-Sah-SchemaBundle-Unix>.

SEE ALSO
    Sah - schema specification

    Data::Sah - Perl implementation of Sah

AUTHOR
    perlancar <perlancar@cpan.org>

CONTRIBUTING
    To contribute, you can send patches by email/via RT, or send pull
    requests on GitHub.

    Most of the time, you don't need to build the distribution yourself. You
    can simply modify the code, then test via:

     % prove -l

    If you want to build the distribution (e.g. to try to install it locally
    on your system), you can install Dist::Zilla,
    Dist::Zilla::PluginBundle::Author::PERLANCAR,
    Pod::Weaver::PluginBundle::Author::PERLANCAR, and sometimes one or two
    other Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps
    required beyond that are considered a bug and can be reported to me.

COPYRIGHT AND LICENSE
    This software is copyright (c) 2024 by perlancar <perlancar@cpan.org>.



( run in 0.784 second using v1.01-cache-2.11-cpan-39bf76dae61 )