Skip to content

Commit

Permalink
try longer password
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Jun 28, 2024
1 parent 0dc7ac7 commit 4e182d1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bundle-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ jobs:
env:
LUCEE_CLI_PRINTEXCEPTIONS: TRUE
LUCEE_ENABLE_BUNDLE_DOWNLOAD: FALSE
# LUCEE_ADMIN_PASSWORD: lucee
# LUCEE_ADMIN_PASSWORD: lucee-test

6 changes: 4 additions & 2 deletions custom/bundle-test/index.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@
generateArgon2Hash( "lucee" );
*/
adminPassword = "lucee-test";
systemOutput( "", true );
systemOutput( "writing password to #expandPath('{lucee-config}/password.txt')#", true );
fileWrite( expandPath('{lucee-config}/password.txt'), "lucee" );
fileWrite( expandPath('{lucee-config}/password.txt'), adminPassword );
systemOutput( "check password", true );
admin
Expand All @@ -45,7 +47,7 @@
*/
systemOutput( "getBundles", true );
admin type="server"
password="lucee"
password=adminPassword
action="getBundles"
returnvariable="bundles";
Expand Down

0 comments on commit 4e182d1

Please sign in to comment.