diff --git a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/DevOps.kt b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/DevOps.kt index feee9f0..6264521 100644 --- a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/DevOps.kt +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/DevOps.kt @@ -2,7 +2,6 @@ package org.domaindrivenarchitecture.provs.desktop.infrastructure import org.domaindrivenarchitecture.provs.framework.core.Prov import org.domaindrivenarchitecture.provs.framework.core.ProvResult -import org.domaindrivenarchitecture.provs.framework.core.local import org.domaindrivenarchitecture.provs.framework.ubuntu.filesystem.base.* import org.domaindrivenarchitecture.provs.framework.ubuntu.install.base.aptInstall import org.domaindrivenarchitecture.provs.framework.ubuntu.web.base.downloadFromURL @@ -133,7 +132,3 @@ fun awsCredentials(id: String, key: String): String { aws_secret_access_key = $key """.trimIndent() } - -fun main() { - local().installDevOps() -} \ No newline at end of file diff --git a/src/main/kotlin/org/domaindrivenarchitecture/provs/framework/core/Secret.kt b/src/main/kotlin/org/domaindrivenarchitecture/provs/framework/core/Secret.kt index e770d6a..41f2946 100644 --- a/src/main/kotlin/org/domaindrivenarchitecture/provs/framework/core/Secret.kt +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/framework/core/Secret.kt @@ -17,6 +17,3 @@ open class Secret(private val value: String) { return Objects.hash(value) } } - - -class Password(plainPassword: String) : Secret(plainPassword) \ No newline at end of file