9a6d6137a3
### Why I did it Remove UpdateGraphService feature from sonic image. The goal is to simplify the bootup process. ### How I did it Remove updategraph service and updategraph script. Update all related services, replace updategraph.service with config-setup.service. #### How to verify it Build and install new image, load minigraph and check all the services.
23 lines
644 B
Django/Jinja
23 lines
644 B
Django/Jinja
[Unit]
|
|
Description=MUX Cable Container
|
|
Requires=database.service config-setup.service swss.service
|
|
After=swss.service interfaces-config.service
|
|
BindsTo=sonic.target
|
|
After=sonic.target
|
|
StartLimitIntervalSec=1200
|
|
StartLimitBurst=3
|
|
|
|
[Service]
|
|
User={{ sonicadmin_user }}
|
|
ExecStartPre=/usr/local/bin/write_standby.py
|
|
ExecStartPre=/usr/local/bin/mark_dhcp_packet.py
|
|
ExecStartPre=/usr/bin/{{docker_container_name}}.sh start
|
|
ExecStart=/usr/bin/{{docker_container_name}}.sh wait
|
|
ExecStop=/usr/bin/{{docker_container_name}}.sh stop
|
|
ExecStopPost=/usr/local/bin/write_standby.py --shutdown mux
|
|
Restart=always
|
|
RestartSec=30
|
|
|
|
[Install]
|
|
WantedBy=sonic.target
|