From 3235d490d111b860cb129670d487399079a535c4 Mon Sep 17 00:00:00 2001 From: see Date: Fri, 21 Jan 2022 18:29:18 +0100 Subject: [PATCH] added leiningen and pwgen --- .../provs/desktop/domain/ProvisionWorkplace.kt | 2 ++ .../provs/desktop/infrastructure/PackageBundles.kt | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/domain/ProvisionWorkplace.kt b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/domain/ProvisionWorkplace.kt index 9cd88a7..5c74c1e 100644 --- a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/domain/ProvisionWorkplace.kt +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/domain/ProvisionWorkplace.kt @@ -59,6 +59,7 @@ fun Prov.provisionWorkplace( aptInstall(BASH_UTILS) aptInstall(OS_ANALYSIS) aptInstall(ZIP_UTILS) + aptInstall(PASSWORD_TOOLS) aptInstall(BROWSER) aptInstall(EMAIL_CLIENT) @@ -91,6 +92,7 @@ fun Prov.provisionWorkplace( // IDEs installVSC("python", "clojure") + aptInstall(CLOJURE_TOOLS) installIntelliJ() installDevOps() diff --git a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/PackageBundles.kt b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/PackageBundles.kt index 74bbdf4..86d8a39 100644 --- a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/PackageBundles.kt +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/PackageBundles.kt @@ -32,4 +32,8 @@ val VPNC = "vpnc network-manager-vpnc network-manager-vpnc-gnome vpnc-scripts" val JAVA_JDK = "openjdk-8-jdk openjdk-11-jdk openjdk-17-jdk" -val DRAWING_TOOLS = "inkscape dia" \ No newline at end of file +val DRAWING_TOOLS = "inkscape dia" + +val CLOJURE_TOOLS = "leiningen" + +val PASSWORD_TOOLS = "pwgen" \ No newline at end of file