Skip to content

Commit

Permalink
Fix system tests
Browse files Browse the repository at this point in the history
Nextcloud has a list of compromised password, and the one used for
system test has been added to this list. So, let's change the password.
  • Loading branch information
nono committed Jan 13, 2025
1 parent bd682ef commit 80e643d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/system/nextcloud/before-starting/create-account.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

# echo -ne fred | md5sum
export OC_PASS=570a90bfbf8c7eab5dc5d4e26832d5b1
# echo -ne fred-password | md5sum
export OC_PASS=796ecbcc9e42a074e22b2c9aa03b79c6
php occ user:add --password-from-env --display-name="Fred" --group="users" fred
2 changes: 1 addition & 1 deletion tests/system/tests/webdav_nextcloud.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
host = container.host
port = container.first_mapped_port
user = "fred"
pass = "570a90bfbf8c7eab5dc5d4e26832d5b1"
pass = "796ecbcc9e42a074e22b2c9aa03b79c6"

inst = Instance.create name: "Fred"
auth = { login: user, password: pass, url: "http://#{host}:#{port}/" }
Expand Down

0 comments on commit 80e643d

Please sign in to comment.