boinc-conffiles-7.3.15/000075500000000000000000000000001231664340400146505ustar00rootroot00000000000000boinc-conffiles-7.3.15/bash/000075500000000000000000000000001231664340400155655ustar00rootroot00000000000000boinc-conffiles-7.3.15/bash/boinc000064400000000000000000000050531231664340400166050ustar00rootroot00000000000000_boinc() { local cur prev opts COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" opts="$(boinc --help | \ sed -n -r 's/^[[:space:]]*(--[a-z_]*).*/\1/p')" # Handle options that require one or more arguments. case "$prev" in --attach_project|--detach_project|--reset_project|--update_prefs|\ --gui_rpc_port) return 0 ;; esac # Handle options that require two arguments. if [[ COMP_CWORD -gt 1 ]]; then pprev="${COMP_WORDS[COMP_CWORD-2]}" case "$pprev" in --attach_project) return 0 ;; esac fi if [[ "$cur" == -* ]]; then COMPREPLY=( $(compgen -W "$opts" -- "$cur") ) return 0 fi } complete -F _boinc -o default boinc _boinccmd() { local cur prev opts cmds COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" opts="--host --passwd -h --help -V --version" cmds="$(boinccmd --help 2>&1 | \ sed -n -r 's/^[[:space:]]*(--[a-z_]*).*/\1/p')" # The following construct assures that: # - no command follows if one of $opts or $cmds was given # - after --host follows only one command or --passwd and one command # - after --passwd follows only one command if [[ $COMP_CWORD -eq 1 ]]; then COMPREPLY=( $(compgen -W "$opts $cmds" -- "$cur") ) return 0 else if [[ "${COMP_WORDS[@]}" =~ ".* --host .* --passwd .*" ]]; then if [[ $COMP_CWORD -eq 5 ]]; then COMPREPLY=( $(compgen -W "$cmds" -- "$cur") ) fi elif [[ "${COMP_WORDS[@]}" =~ ".* --passwd .*" ]]; then if [[ $COMP_CWORD -eq 3 ]]; then COMPREPLY=( $(compgen -W "$cmds" -- "$cur") ) fi elif [[ "${COMP_WORDS[@]}" =~ ".* --host .*" ]]; then if [[ $COMP_CWORD -eq 3 ]]; then COMPREPLY=( $(compgen -W "--passwd $cmds" -- "$cur") ) fi fi fi # Handle options/commands that require one or more arguments. case "$prev" in --get_messages|--passwd) return 0 ;; --host) _known_hosts return 0 ;; --set_run_mode|--set_network_mode) COMPREPLY=( $(compgen -W "always auto never" -- "$cur") ) return 0 ;; --set_screensaver_mode) COMPREPLY=( $(compgen -W "on off" -- "$cur") ) return 0 ;; esac } complete -F _boinccmd boinccmd # vim: syntax=sh boinc-conffiles-7.3.15/boinc-manager.desktop000064400000000000000000000011451231664340400207460ustar00rootroot00000000000000[Desktop Entry] Type=Application Version=1.0 Exec=/usr/bin/boincmgr Path=/var/lib/boinc-client Icon=boincmgr Categories=Science;Education; Name=BOINC Manager GenericName=BOINC monitor and control utility GenericName[cs]=Monitorovací a ovládací nástroj pro BOINC GenericName[de]=BOINC Überwachungs- und Kontrollprogramm GenericName[pt]=Monitorização BOINC e utilitário de controlo Comment=Configure or monitor a BOINC core client Comment[cs]=Monitoruje a nastavuje klienta BOINC Comment[de]=BOINC Basis Client konfigurieren oder überwachen Comment[pt]=Configurar ou monitorizar o cliente básico do BOINC boinc-conffiles-7.3.15/cc_config.xml000064400000000000000000000023111231664340400173010ustar00rootroot00000000000000 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 boinc-conffiles-7.3.15/global_prefs_override.xml000064400000000000000000000004521231664340400217310ustar00rootroot00000000000000 boinc-conffiles-7.3.15/gui_rpc_auth.cfg000064400000000000000000000000011231664340400177710ustar00rootroot00000000000000 boinc-conffiles-7.3.15/remote_hosts.cfg000064400000000000000000000004501231664340400200430ustar00rootroot00000000000000# This file contains a list of hostnames or IP addresses (one per line) # of remote hosts, that are allowed to connect and to control the local # BOINC core client via GUI RPCs. # Lines beginning with a # or a ; are treated like comments and will be # ignored. # #host.example.com #192.168.0.180