This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2020-04-13 17:49:10 +08:00

29 lines
550 B
YAML

- name: "Start oam_cli_agent_mxn"
systemd:
name: oam_cli_agent_mxn
state: restarted
enabled: yes
daemon_reload: yes
- name: "kill all snmp"
shell: ps axf | grep snmp |grep -v grep |awk '{print $1}' | xargs kill
- name: "Start snmpd"
shell: /usr/sbin/snmpd -C -c /usr/share/snmp/snmpd.conf
- name: "Start oam_snmp"
systemd:
name: oam_snmp
state: restarted
enabled: yes
daemon_reload: yes
- name: "Start oam_core"
systemd:
name: oam_core
state: restarted
enabled: yes
daemon_reload: yes