Server IP : 85.214.239.14 / Your IP : 18.221.114.102 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/ansible_collections/community/windows/plugins/modules/ |
Upload File : |
#!/usr/bin/python # -*- coding: utf-8 -*- # Copyright: 2017, Dag Wieers (@dagwieers) <dag@wieers.com> # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) DOCUMENTATION = r''' --- module: win_defrag short_description: Consolidate fragmented files on local volumes description: - Locates and consolidates fragmented files on local volumes to improve system performance. - 'More information regarding C(win_defrag) is available from: U(https://technet.microsoft.com/en-us/library/cc731650%28v%3Dws.11.aspx%29)' requirements: - defrag.exe options: include_volumes: description: - A list of drive letters or mount point paths of the volumes to be defragmented. - If this parameter is omitted, all volumes (not excluded) will be fragmented. type: list elements: str exclude_volumes: description: - A list of drive letters or mount point paths to exclude from defragmentation. type: list elements: str freespace_consolidation: description: - Perform free space consolidation on the specified volumes. type: bool default: no priority: description: - Run the operation at low or normal priority. type: str choices: [ low, normal ] default: low parallel: description: - Run the operation on each volume in parallel in the background. type: bool default: no author: - Dag Wieers (@dagwieers) ''' EXAMPLES = r''' - name: Defragment all local volumes (in parallel) community.windows.win_defrag: parallel: yes - name: 'Defragment all local volumes, except C: and D:' community.windows.win_defrag: exclude_volumes: [ C, D ] - name: 'Defragment volume D: with normal priority' community.windows.win_defrag: include_volumes: D priority: normal - name: Consolidate free space (useful when reducing volumes) community.windows.win_defrag: freespace_consolidation: yes ''' RETURN = r''' cmd: description: The complete command line used by the module. returned: always type: str sample: defrag.exe /C /V rc: description: The return code for the command. returned: always type: int sample: 0 stdout: description: The standard output from the command. returned: always type: str sample: Success. stderr: description: The error output from the command. returned: always type: str sample: msg: description: Possible error message on failure. returned: failed type: str sample: Command 'defrag.exe' not found in $env:PATH. changed: description: Whether or not any changes were made. returned: always type: bool sample: true '''