fix: installing system packages

pull/1282/head
gjmzj 2023-05-04 09:46:55 +08:00
parent 49bc8c410f
commit 215667cdc9
3 changed files with 13 additions and 13 deletions

View File

@ -10,18 +10,6 @@
state: absent
backup: 'yes'
- name: 安装基础软件包
package:
name:
- bash-completion # bash命令补全工具需要重新登录服务器生效
- ipset # ipvs 模式需要
- ipvsadm # ipvs 模式需要
- psmisc # 安装psmisc 才能使用命令killallkeepalive的监测脚本需要
- rsync # 文件同步工具,分发证书等配置文件需要
- socat # 用于port forwarding
state: present
when: 'INSTALL_SOURCE != "offline"'
- name: 加载内核模块
modprobe: name={{ item }} state=present
with_items:

View File

@ -19,10 +19,16 @@
- name: 安装 ubuntu/debian基础软件
package:
name:
- bash-completion # bash命令补全工具需要重新登录服务器生效
- conntrack # network connection cleanup 用到
- ipset # ipvs 模式需要
- ipvsadm # ipvs 模式需要
- jq # 轻量JSON处理程序安装docker查询镜像需要
- libseccomp2 # 安装containerd需要
- nfs-common # 挂载nfs 共享文件需要 (创建基于 nfs的PV 需要)
- psmisc # 安装psmisc 才能使用命令killallkeepalive的监测脚本需要
- rsync # 文件同步工具,分发证书等配置文件需要
- socat # 用于port forwarding
state: present
when: 'INSTALL_SOURCE != "offline"'

View File

@ -10,9 +10,15 @@
- name: 安装基础软件包
package:
name:
- bash-completion # bash命令补全工具需要重新登录服务器生效
- conntrack-tools # ipvs 模式需要
- ipset # ipvs 模式需要
- ipvsadm # ipvs 模式需要
- libseccomp # 安装containerd需要
- nfs-utils # 挂载nfs 共享文件需要 (创建基于 nfs的PV 需要)
- psmisc # 安装psmisc 才能使用命令killallkeepalive的监测脚本需要
- rsync # 文件同步工具,分发证书等配置文件需要
- socat # 用于port forwarding
state: present
when: 'INSTALL_SOURCE != "offline"'