aboutsummaryrefslogtreecommitdiff
path: root/src/star.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/star.rs')
-rw-r--r--src/star.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/star.rs b/src/star.rs
index 28caa21..46f5bff 100644
--- a/src/star.rs
+++ b/src/star.rs
@@ -124,7 +124,7 @@ impl Star {
/// If the installation image doesn't exist in the default libvirtd pool, this will fail with
/// [`Error::MissingImage`][crate::errors::Error::MissingImage].
///
- pub fn planet(&mut self, name: String, max_mem: Memory, max_cpus: CpuCount, disk_size_mb: u64, ship: Ship) -> Result<Planet, Error> {
+ pub fn planet(&mut self, name: String, max_mem: Memory, max_cpus: CpuCount, disk_size_mb: u64, ship: Ship, seed_base: Option<String>) -> Result<Planet, Error> {
// Check for image on host machine
if self.remote {
@@ -198,7 +198,7 @@ impl Star {
true,
max_mem.0,
max_cpus.0,
- "blank".to_string()
+ seed_base,
)?;
let buf = String::from_utf8(buf).unwrap();