[skip ci] cleanup

This commit is contained in:
ansgarz 2022-03-18 21:24:42 +01:00
parent f0a7fe569d
commit d4c7c19126
2 changed files with 0 additions and 8 deletions

View file

@ -2,7 +2,6 @@ package org.domaindrivenarchitecture.provs.desktop.infrastructure
import org.domaindrivenarchitecture.provs.framework.core.Prov import org.domaindrivenarchitecture.provs.framework.core.Prov
import org.domaindrivenarchitecture.provs.framework.core.ProvResult 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.filesystem.base.*
import org.domaindrivenarchitecture.provs.framework.ubuntu.install.base.aptInstall import org.domaindrivenarchitecture.provs.framework.ubuntu.install.base.aptInstall
import org.domaindrivenarchitecture.provs.framework.ubuntu.web.base.downloadFromURL 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 aws_secret_access_key = $key
""".trimIndent() """.trimIndent()
} }
fun main() {
local().installDevOps()
}

View file

@ -17,6 +17,3 @@ open class Secret(private val value: String) {
return Objects.hash(value) return Objects.hash(value)
} }
} }
class Password(plainPassword: String) : Secret(plainPassword)