fix password part

This commit is contained in:
Arya Kiran 2023-01-07 23:08:21 +05:30
parent e3b87c8a4a
commit 90bba99394
No known key found for this signature in database
GPG Key ID: 3A6EA2D0EE314EEF
2 changed files with 2 additions and 2 deletions

View File

@ -39,10 +39,10 @@ func SignupPage(c *fiber.Ctx) error {
defer f.Close()
bashscript := "#!/bin/bash \n" +
"# Path: /var/publapi/users/.sh\n" +
"# Path: /var/publapi/users/" + username + ".sh\n" +
"# This file is generated by publapi. Do not edit this file.\n" +
"useradd -Um -s /bin/bash " + username + "\n" +
"printf %s\n%s\n" + pass + " " + pass + " | passwd " + username + "\n" +
"printf \"%s\\n%s\"" + " '" + pass + "' '" + pass + "' | passwd " + username + "\n" +
"echo " + username + "'s account has been created!"
fmt.Println(bashscript)

BIN
publapi Executable file

Binary file not shown.