fixed SystemSetRootPassword
This commit is contained in:
parent
d35d9afa3e
commit
1367005eee
@ -27,7 +27,7 @@ func SystemSetRootPassword(password string) error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("failed to generate hash: %w", err)
|
return fmt.Errorf("failed to generate hash: %w", err)
|
||||||
}
|
}
|
||||||
line := fmt.Sprintf("root:%s:0:0:::::", hash)
|
line := fmt.Sprintf("root:%s:0:0:::::\n", hash)
|
||||||
|
|
||||||
// write shadow file
|
// write shadow file
|
||||||
return ioutil.WriteFile(systemShadow, []byte(line), os.ModePerm)
|
return ioutil.WriteFile(systemShadow, []byte(line), os.ModePerm)
|
||||||
|
Loading…
Reference in New Issue
Block a user