Skip to content

Commit

Permalink
Update index.cfm
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Jun 28, 2024
1 parent 27dd9e5 commit ca94ca0
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions custom/bundle-test/index.cfm
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<cfscript>
fileWrite( expandPath('{lucee-config}/password.txt'), "lucee" );
systemOutput( "--- Bundle Test ---- " );
systemOutput( "--- extensions are loaded on demand, so let's trigger them ---- " );
systemOutput( "", true );
Expand All @@ -20,13 +18,24 @@
systemOutput( "", true );
systemOutput( "S3", true );
s3exists( bucketName="test", objectName="test", accessKeyId="test", secretAccessKey="test" ); // will throw
s3exists( bucketName="extension-download", objectName="test", accessKeyId="test", secretAccessKey="test" ); // will throw
/*
broken
systemOutput( "", true );
systemOutput( "Argon", true );
generateArgon2Hash( "lucee" );
*/
systemOutput( "", true );
// fileWrite( expandPath('{lucee-config}/password.txt'), "lucee" );
/*
admin
action="updatePassword"
type="server"
oldPassword=""
newPassword="lucee";
admin
type="server"
password="lucee"
Expand All @@ -35,6 +44,6 @@
for ( bundle in bundles ){
systemOutput( "#chr(9)# #bundle.symbolicName#, #bundles.version#, #bundles.state#", true );
}
*/
systemOutput( "--- finished ---- " );
</cfscript>

0 comments on commit ca94ca0

Please sign in to comment.