diff --git a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/NextcloudClient.kt b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/NextcloudClient.kt new file mode 100644 index 0000000..1304c3d --- /dev/null +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/NextcloudClient.kt @@ -0,0 +1,9 @@ +package org.domaindrivenarchitecture.provs.desktop.infrastructure + +import org.domaindrivenarchitecture.provs.framework.core.Prov +import org.domaindrivenarchitecture.provs.framework.ubuntu.install.base.aptInstallFromPpa + + +fun Prov.installNextcloudClient() = task { + aptInstallFromPpa("nextcloud-devs", "client", "nextcloud-client") +}