We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
invite_group
Weird logic... I can not recall why i wrote this...
FreeBSDUtils().create_user('bsdtest', 'pw') /root/bsd-cloudinit/cloudbaseinit/osutils/freebsd.py in create_user(self, username, password, invite_group, password_expires) 29 30 assert not invite_group or isinstance(invite_group, list), "param invite_group must be a list." ---> 31 assert invite_group, "invite_group cannot be empty." 32 for i in invite_group: 33 grouplist += i+',' AssertionError: invite_group cannot be empty.
The text was updated successfully, but these errors were encountered:
[#20] Code refine for create_user and fix #21
create_user
e001d3d
Also, using new style string formatter
503051e
1. Using new style string formatter 2. Add helper function `isiterable`
No branches or pull requests
Weird logic...
I can not recall why i wrote this...
The text was updated successfully, but these errors were encountered: