Skip to content

Commit

Permalink
install: change /boot/ directory for --copy-network
Browse files Browse the repository at this point in the history
In another code review [1] we agreed to make the name of the directory
more generic.

[1] coreos/fedora-coreos-config#346 (comment)
  • Loading branch information
dustymabe committed Apr 17, 2020
1 parent cbf988f commit 008866f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ fn copy_network_config(mountpoint: &Path, net_config_src: &str) -> Result<()> {
eprintln!("Copying networking configuration from {}", net_config_src);

// get the path to the destination directory
let net_config_dest = mountpoint.join("coreos-installer-network");
let net_config_dest = mountpoint.join("coreos-firstboot-network");

// make the directory if it doesn't exist
create_dir_all(&net_config_dest).chain_err(|| {
Expand Down

0 comments on commit 008866f

Please sign in to comment.