Commit d6ae6b76 authored by nanahira's avatar nanahira

disable rpcbind by default

parent f6da528b
Pipeline #11499 passed with stage
in 3 minutes and 3 seconds
...@@ -31,3 +31,4 @@ railgun: ...@@ -31,3 +31,4 @@ railgun:
remoteGatewayId: 31 remoteGatewayId: 31
laptop: false laptop: false
extra_params: [] extra_params: []
nfs: false
...@@ -8,6 +8,18 @@ ...@@ -8,6 +8,18 @@
apt: apt:
# update_cache: true # update_cache: true
name: curl,wget,git,vim,sudo,byobu,iftop,iotop,build-essential,p7zip-full,p7zip-rar,xclip,astyle,tcpdump,rsync,htop,locales,mtr,dnsutils,net-tools,traceroute,tar,unzip,iperf,iperf3,nmap,mosh,subversion,nfs-common,fish,haveged,iptables,ipset,iproute2,python3-setuptools,python3-dev,python3-pip,wireguard-tools,zstd,gnupg2 name: curl,wget,git,vim,sudo,byobu,iftop,iotop,build-essential,p7zip-full,p7zip-rar,xclip,astyle,tcpdump,rsync,htop,locales,mtr,dnsutils,net-tools,traceroute,tar,unzip,iperf,iperf3,nmap,mosh,subversion,nfs-common,fish,haveged,iptables,ipset,iproute2,python3-setuptools,python3-dev,python3-pip,wireguard-tools,zstd,gnupg2
- name: disable rpcbind
become: true
systemd:
name: '{{ item }}'
state: stopped
enabled: false
ignore_errors: true
when: not nfs
with_items:
- rpcbind
- rpcbind.socket
- rpcbind.service
- name: ctags in old Ubuntu - name: ctags in old Ubuntu
become: true become: true
apt: apt:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment