11 lines
280 B
Bash
11 lines
280 B
Bash
#!/bin/sh
|
|
# Create and populate a volatile home directory.
|
|
mount -t tmpfs tmpfs /home/selene
|
|
chown selene:selene /home/selene
|
|
|
|
cp /etc/skel/welcome /home/selene/
|
|
cp /etc/skel/LICENSE /home/selene/
|
|
|
|
chown selene:selene /home/selene/welcome
|
|
chown selene:selene /home/selene/LICENSE
|