web-dev-qa-db-ja.com

新しいユーザーを作成するときに、ホームディレクトリに.virtualenvsディレクトリを自動的に作成するにはどうすればよいですか?

新しいユーザーの作成時に、各新しいユーザーのホームディレクトリに「.virtualenvs」というディレクトリを自動的に作成します。

Useraddコマンドを使用して、新しいユーザーを作成しています。

8
coffee-grinder

ディレクトリ/etc/skel/.virtualenvsを作成します。 /etc/skelディレクトリは、新しいホームディレクトリのスケルトンとして使用されます。

/etc/adduser.confで定義されています:

# The SKEL variable specifies the directory containing "skeletal" user
# files; in other words, files such as a sample .profile that will be
# copied to the new user's home directory when it is created.
SKEL=/etc/skel
12
Lekensteyn