mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
updates agent 0.2.9 metadata
This commit is contained in:
committed by
Aiden McClelland
parent
9503f754ad
commit
77b8d0b2a0
1
agent/migrations/0.2.8::0.2.9
Normal file
1
agent/migrations/0.2.8::0.2.9
Normal file
@@ -0,0 +1 @@
|
|||||||
|
SELECT TRUE;
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
name: ambassador-agent
|
name: ambassador-agent
|
||||||
version: 0.2.8
|
version: 0.2.9
|
||||||
|
|
||||||
default-extensions:
|
default-extensions:
|
||||||
- NoImplicitPrelude
|
- NoImplicitPrelude
|
||||||
|
|||||||
@@ -96,12 +96,12 @@ parseKernelVersion = do
|
|||||||
pure $ KernelVersion (Version (major', minor', patch', 0)) arch
|
pure $ KernelVersion (Version (major', minor', patch', 0)) arch
|
||||||
|
|
||||||
synchronizer :: Synchronizer
|
synchronizer :: Synchronizer
|
||||||
synchronizer = sync_0_2_8
|
synchronizer = sync_0_2_9
|
||||||
{-# INLINE synchronizer #-}
|
{-# INLINE synchronizer #-}
|
||||||
|
|
||||||
sync_0_2_8 :: Synchronizer
|
sync_0_2_9 :: Synchronizer
|
||||||
sync_0_2_8 = Synchronizer
|
sync_0_2_9 = Synchronizer
|
||||||
"0.2.8"
|
"0.2.9"
|
||||||
[ syncCreateAgentTmp
|
[ syncCreateAgentTmp
|
||||||
, syncCreateSshDir
|
, syncCreateSshDir
|
||||||
, syncRemoveAvahiSystemdDependency
|
, syncRemoveAvahiSystemdDependency
|
||||||
|
|||||||
14
agent/test/Lib/External/AppManifestSpec.hs
vendored
14
agent/test/Lib/External/AppManifestSpec.hs
vendored
@@ -68,10 +68,10 @@ hidden-service-version: v3
|
|||||||
|
|
||||||
spec :: Spec
|
spec :: Spec
|
||||||
spec = do
|
spec = do
|
||||||
describe "parsing app manifest ports" $ do
|
describe "parsing app manifest ports" $ do
|
||||||
it "should yield true for cups 0.2.3" $ do
|
it "should yield true for cups 0.2.3" $ do
|
||||||
res <- decodeThrow @IO @(AppManifest 0) cups023Manifest
|
res <- decodeThrow @IO @AppManifest cups023Manifest
|
||||||
uiAvailable res `shouldBe` True
|
uiAvailable res `shouldBe` True
|
||||||
it "should yield false for cups 0.2.3 Mod" $ do
|
it "should yield false for cups 0.2.3 Mod" $ do
|
||||||
res <- decodeThrow @IO @(AppManifest 0) cups023ManifestModNoUI
|
res <- decodeThrow @IO @AppManifest cups023ManifestModNoUI
|
||||||
uiAvailable res `shouldBe` False
|
uiAvailable res `shouldBe` False
|
||||||
|
|||||||
Reference in New Issue
Block a user