Skip to content

Commit

Permalink
Deploy files as lvuser not admin
Browse files Browse the repository at this point in the history
  • Loading branch information
spacey-sooty committed Jun 5, 2024
1 parent 92c5dc2 commit 7f26851
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public void setAddresses(String... addresses) {
}

getLocations().create("ds", DSDeployLocation.class, ds -> {
ds.setUser("admin");
ds.setUser("lvuser");
ds.setPassword("");
ds.setIpv6(false);
});
Expand All @@ -105,7 +105,7 @@ public void addAddress(String address) {
getLocations().create(address, SshDeployLocation.class, loc -> {
loc.setAddress(address);
loc.setIpv6(false);
loc.setUser("admin");
loc.setUser("lvuser");
loc.setPassword("");
});
}
Expand Down

0 comments on commit 7f26851

Please sign in to comment.