File tree Expand file tree Collapse file tree 3 files changed +23
-1
lines changed
Expand file tree Collapse file tree 3 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 11<wpf : ResourceDictionary xml : space =" preserve" xmlns : x =" http://schemas.microsoft.com/winfx/2006/xaml" xmlns : s =" clr-namespace:System;assembly=mscorlib" xmlns : ss =" urn:shemas-jetbrains-com:settings-storage-xaml" xmlns : wpf =" http://schemas.microsoft.com/winfx/2006/xaml/presentation" >
2- <s : Boolean x : Key =" /Default/UserDictionary/Words/=codingteam/@EntryIndexedValue" >True</s : Boolean ></wpf : ResourceDictionary >
2+ <s : Boolean x : Key =" /Default/UserDictionary/Words/=codingteam/@EntryIndexedValue" >True</s : Boolean >
3+ <s : Boolean x : Key =" /Default/UserDictionary/Words/=lineinfile/@EntryIndexedValue" >True</s : Boolean >
4+ <s : Boolean x : Key =" /Default/UserDictionary/Words/=sshuser/@EntryIndexedValue" >True</s : Boolean ></wpf : ResourceDictionary >
Original file line number Diff line number Diff line change 44
55- import_playbook : auth.yml
66- import_playbook : nginx.yml
7+ - import_playbook : docker.yml
78- import_playbook : codingteam.org.ru.yml
Original file line number Diff line number Diff line change 1+ # SPDX-FileCopyrightText: 2025 Friedrich von Never <friedrich@fornever.me>
2+ #
3+ # SPDX-License-Identifier: MIT
4+
5+ ---
6+ - name : Install Docker
7+ hosts : xmpp2
8+ become : true
9+
10+ tasks :
11+ - name : Update apt cache
12+ ansible.builtin.apt :
13+ update_cache : true
14+ cache_valid_time : 3600
15+
16+ - name : Install the Docker package
17+ ansible.builtin.apt :
18+ name : docker.io
19+ state : present
You can’t perform that action at this time.
0 commit comments