summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2019-04-17 20:52:51 +0200
committermakefu <github@syntax-fehler.de>2019-04-17 20:52:51 +0200
commita7828387a9d38d6b921439d6a130dad1b253de7e (patch)
tree16effc49b12ed0a66be3c23bd0f208967e8bf9db
parent807546f87b6cbc7e704036057b8115fc570afbba (diff)
ma deployment/owncloud: owncloud -> nextcloud
-rw-r--r--makefu/2configs/deployment/owncloud.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefu/2configs/deployment/owncloud.nix b/makefu/2configs/deployment/owncloud.nix
index d7c08266..6f073fd4 100644
--- a/makefu/2configs/deployment/owncloud.nix
+++ b/makefu/2configs/deployment/owncloud.nix
@@ -23,9 +23,9 @@ let
in {
system.activationScripts."prepare-nextcloud-${domain}" = ''
if test ! -e ${root} ;then
- echo "copying latest ${pkgs.owncloud.name} release to ${root}"
+ echo "copying latest ${pkgs.nextcloud.name} release to ${root}"
mkdir -p $(dirname "${root}")
- cp -r ${pkgs.owncloud} "${root}"
+ cp -r ${pkgs.nextcloud} "${root}"
chown -R nginx:nginx "${root}"
chmod 770 "${root}"
fi