Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix user create bug |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
5a8a5d5d2faa6b03686abd9c9557d57f |
User & Date: | chewbranca 2020-04-10 06:05:03 |
Context
2020-04-10
| ||
06:11 | Initial Fahombo project and import of https://gitlab.com/alexjgriffith/min-love2d-fennel check-in: 25cf6d1f59 user: chewbranca tags: lisp-game-jam-2020 | |
06:05 | Fix user create bug Leaf check-in: 5a8a5d5d2f user: chewbranca tags: trunk | |
05:22 | mkdir src check-in: 49ad980338 user: chewbranca tags: trunk | |
Changes
Changes to bootstrap/chewbranca_com.sh.
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
mkdir -p /opt/bin
mkdir -p /opt/log
mkdir -p /opt/etc
mkdir -p /opt/service
mkdir -p /opt/museum
if ! id -u fossil > /dev/null 2>&1; then
adduser --disabled-password --gecos "" chewbranca
chown fossil:fossil /opt/museum
fi
if ! id -u chewbranca > /dev/null 2>&1; then
adduser --disabled-password --gecos "" chewbranca
adduser chewbranca sudo
adduser chewbranca fossil
|
| |
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
mkdir -p /opt/bin
mkdir -p /opt/log
mkdir -p /opt/etc
mkdir -p /opt/service
mkdir -p /opt/museum
if ! id -u fossil > /dev/null 2>&1; then
adduser --disabled-password --gecos "" fossil
chown fossil:fossil /opt/museum
fi
if ! id -u chewbranca > /dev/null 2>&1; then
adduser --disabled-password --gecos "" chewbranca
adduser chewbranca sudo
adduser chewbranca fossil
|