-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[slave]: remove apt-get clean #693
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lguohan
pushed a commit
that referenced
this pull request
Nov 29, 2018
* Add nbrmgr to supervisord conf * Corrected priority values [Fix typo] * Submodule update for Neighbor manager daemon Submodule update sonic-swss-common: edbfeec - Remove default docker name value of swss. (#250) 9728462 - Corrected configDB name for neigh table (#251) 6decc65 - Add NEIGH_TABLE to configDB for neighbor configuration (#249) 9918ae6 - Add ProducerStateTable temp view implementation and UT (#247) 41408f2 - Update README on dependencies d9c0ba4 -Update README on the section 'Build with Google Test' bb7fa5b - [ut]: explicit convert is to bool type (#248) 661b82c - Add gtest instruction in README Submodule update sonic-swss 705b092 - Support ConfigDB neighbor configuration, introduce nbrmgr daemon (#693) 8522390 - Add vxlan switch attributes to switch orch (#712) b123fa0 - [schema] update WARM_RESTART_TABLE:process_name schema document (#707) 2d7ab0c - Revert "Align default MTU value as SAI default (#705)" (#710) 836a58c - Align default MTU value as SAI default (#705) bffa01f - VNET/VXLAN changes (#643) b750a4b - [watermarkorch] add watermarkorch, extend queue and pg counters with wat\u2026 (#629)
madhanmellanox
pushed a commit
to madhanmellanox/sonic-buildimage
that referenced
this pull request
Mar 23, 2020
…ic-net#693) * Introduce neighbor manager daemon * Corrected the ConfigDB name * Modified to use libnl3, address review comments * Retain nl socket after use, address review comments * Check invalid mac configuration, catch exception
4 tasks
SuvarnaMeenakshi
added a commit
that referenced
this pull request
Jun 3, 2021
Why I did it Update sonic-sairedis submodule to include below commits: 0e2105a [vs]: Start syncd by passing context configuration file and global context index. (#832) f931ae4 [VS] Add support for context and multiple switches (#830) 59208de [submodule] Update SAI submodule (#829) 77d44f5 [Mellanox] Update mellanoxs dump generation to include SDK dumps (#833) 4fb571b Generalizing config.bcm support for BRCM silicons (#693) Signed-off-by: Suvarna Meenakshi <sumeenak@microsoft.com>
carl-nokia
pushed a commit
to carl-nokia/sonic-buildimage
that referenced
this pull request
Aug 7, 2021
Why I did it Update sonic-sairedis submodule to include below commits: 0e2105a [vs]: Start syncd by passing context configuration file and global context index. (sonic-net#832) f931ae4 [VS] Add support for context and multiple switches (sonic-net#830) 59208de [submodule] Update SAI submodule (sonic-net#829) 77d44f5 [Mellanox] Update mellanoxs dump generation to include SDK dumps (sonic-net#833) 4fb571b Generalizing config.bcm support for BRCM silicons (sonic-net#693) Signed-off-by: Suvarna Meenakshi <sumeenak@microsoft.com>
AidanCopeland
pushed a commit
to Metaswitch/sonic-buildimage
that referenced
this pull request
Apr 14, 2022
* Per-switching silicon Common config for Broadcom Supported Platforms.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Similar as #685 but in the slave image.
The debian jessie image updated recently (https://github.com/debuerreotype/docker-debian-artifacts/blob/0dcb9a06b2fcf9fdb416dc558db6f7b84cb6ab01/jessie/rootfs.tar.xz) and brought breaking change.
The path /var/cache/apt/archives/ is missing, and later 'apt-get clean' will fail with
We found that 'apt-get update' will create the missing directory and files, so simple remove the 'apt-clean' to workaround this bug.