Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/plugins/linglong/gui/generatedialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ void GenerateDialog::generate()
YAML::Node sources;
YAML::Node depend;
depend["kind"] = "file";
depend["url"] = "https://pools.uniontech.com/deepin-beige/pool/main/a/acl/libacl1_2.3.1-1_amd64.deb";
depend["url"] = "input your url";
depend["digest"] = "f06e936eb913b8e9271c17e6d8b94d9e4f0aa558d7debdc324c9484908ee8dc8";
YAML::Node source;
source["kind"] = "git";
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/container-up.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ NETNS_ID="netns${CID}"
BR_ID="br${CID}"
BR_IP="172.16.0.1/16"
BR_GW="172.16.0.1"
MIRROR="https://pools.uniontech.com/deepin"
MIRROR="input your mirror address"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

issue (bug_risk): Using 'input your mirror address' as a default may break script functionality.

Add a validation check for MIRROR or provide clear instructions to update this variable before running the script.


sudo ip netns add ${NETNS_ID}
sudo ip link add ${BR_ID} type bridge
Expand Down
Loading