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
525 B
Django/Jinja
23 lines
525 B
Django/Jinja
[Unit]
|
|
Description=PDE container
|
|
{% if sonic_asic_platform == 'broadcom' %}
|
|
Requires=opennsl-modules.service
|
|
ConditionPathExists=!/usr/bin/swss.sh
|
|
{% endif %}
|
|
|
|
After=config-setup.service
|
|
{% if sonic_asic_platform == 'broadcom' %}
|
|
After=opennsl-modules.service
|
|
{% endif %}
|
|
|
|
Before=
|
|
|
|
[Service]
|
|
User={{ sonicadmin_user }}
|
|
ExecStartPre=/usr/bin/{{ docker_container_name }}.sh start
|
|
ExecStart=/usr/bin/{{ docker_container_name }}.sh wait
|
|
ExecStop=/usr/bin/{{ docker_container_name }}.sh stop
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|