Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
312 B

4 years ago
  1. # -*- mode: snippet -*-
  2. # name: user
  3. # key: user
  4. # --
  5. user "${1:random}" do
  6. action :create
  7. comment "${2:Random User}"
  8. uid ${3:1000}
  9. gid "${4:users}"
  10. home "${5:/home/random}"
  11. shell "${6:/bin/zsh}"
  12. password "${7:\$1\$JJsvHslV\$szsCjVEroftprNn4JHtDi.}"
  13. supports :manage_home =>manage_home true
  14. end