diff options
author | EuAndreh <eu@euandre.org> | 2019-05-24 22:50:37 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-05-24 22:52:21 -0300 |
commit | b3305fde729756548d69592aca16b3562285d911 (patch) | |
tree | abb8cb6649e8bb1c1fa4dd11f9a0ea6cabbe0657 | |
parent | Setup direnv hook (diff) | |
download | dotfiles-b3305fde729756548d69592aca16b3562285d911.tar.gz dotfiles-b3305fde729756548d69592aca16b3562285d911.tar.xz |
Use Nextcloud back again instead of ownCloud
-rw-r--r-- | nixos/configuration.nix | 1 | ||||
-rwxr-xr-x | scripts/once-only-owncloud.sh | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index fd2fd15..99485f7 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -103,6 +103,7 @@ in mr nextcloud-client owncloud-client + nextcloud-client borgbackup git-sizer diff --git a/scripts/once-only-owncloud.sh b/scripts/once-only-owncloud.sh index 66b3ee4..874ba56 100755 --- a/scripts/once-only-owncloud.sh +++ b/scripts/once-only-owncloud.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -if [ "$(pidof owncloud)" ] +if [ "$(pidof nextcloud)" ] then echo "ownCloud already running." else |