mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 21:13:09 +00:00
* remove all apt-get calls from check phase of startup * Fix "n is undefined" config spec change bug (#392) Fixes the issue where an old config with a new config spec sometimes renders the config inaccessible, with the error `n is undefined` * updates version numbers * version change for appmgr * updates version numbers and welcome message * adds migration for 0.2.15 to the agent * actually add 0.2.15 migration to appmgr Co-authored-by: Chris Guida <chrisguida@users.noreply.github.com>
22 lines
439 B
Rust
22 lines
439 B
Rust
use super::*;
|
|
|
|
const V0_2_15: emver::Version = emver::Version::new(0, 2, 15, 0);
|
|
|
|
pub struct Version;
|
|
#[async_trait]
|
|
impl VersionT for Version {
|
|
type Previous = v0_2_14::Version;
|
|
fn new() -> Self {
|
|
Version
|
|
}
|
|
fn semver(&self) -> &'static emver::Version {
|
|
&V0_2_15
|
|
}
|
|
async fn up(&self) -> Result<(), Error> {
|
|
Ok(())
|
|
}
|
|
async fn down(&self) -> Result<(), Error> {
|
|
Ok(())
|
|
}
|
|
}
|