<feed xmlns='http://www.w3.org/2005/Atom'>
<title>xavi/slcl/usergen, branch css</title>
<subtitle>Small and lightweight cloud storage written in C99 and POSIX.1-2008.
</subtitle>
<id>https://gitea.privatedns.org/xavi/slcl/atom?h=css</id>
<link rel='self' href='https://gitea.privatedns.org/xavi/slcl/atom?h=css'/>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/slcl/'/>
<updated>2024-06-12T15:11:17+00:00</updated>
<entry>
<title>usergen: Fix error on empty $QUOTA</title>
<updated>2024-06-12T15:11:17+00:00</updated>
<author>
<name>Xavier Del Campo Romero</name>
<email>xavi.dcr@tutanota.com</email>
</author>
<published>2024-06-12T15:09:43+00:00</published>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/slcl/commit/?id=2d6fc0f9a6a60bc96ef9c4a10e450ed6a8247435'/>
<id>urn:sha1:2d6fc0f9a6a60bc96ef9c4a10e450ed6a8247435</id>
<content type='text'>
When no quota is entered, printf(1) could fail because '%d' would expect
at least one argument. Whereas some printf(1) implementations, such as
the one by GNU coreutils, are somewhat tolerant, stricter
implementations such as Busybox would (correctly) refuse this.
</content>
</entry>
<entry>
<title>usergen: Do not abort on existing directory</title>
<updated>2024-02-20T20:44:53+00:00</updated>
<author>
<name>Xavier Del Campo Romero</name>
<email>xavi.dcr@tutanota.com</email>
</author>
<published>2024-02-20T20:44:04+00:00</published>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/slcl/commit/?id=dd29f9096a2e364db316a8975e5f6be5a9a97023'/>
<id>urn:sha1:dd29f9096a2e364db316a8975e5f6be5a9a97023</id>
<content type='text'>
Otherwise, it would not be possible to replace user credentials if the
directory already exists.
</content>
</entry>
<entry>
<title>usergen: Fix password generation</title>
<updated>2024-01-26T19:32:28+00:00</updated>
<author>
<name>Xavier Del Campo Romero</name>
<email>xavi.dcr@tutanota.com</email>
</author>
<published>2024-01-26T19:32:28+00:00</published>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/slcl/commit/?id=6d6c350479685da0310b11037b9b680242120923'/>
<id>urn:sha1:6d6c350479685da0310b11037b9b680242120923</id>
<content type='text'>
For longer passwords, od(1) might introduce a newline character, causing
printf(1) to interpret its input string incorrectly.
</content>
</entry>
<entry>
<title>usergen: Call mkdir(1) before database swap</title>
<updated>2023-10-19T15:35:39+00:00</updated>
<author>
<name>Xavier Del Campo Romero</name>
<email>xavi.dcr@tutanota.com</email>
</author>
<published>2023-10-19T13:44:06+00:00</published>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/slcl/commit/?id=fc3db3927747fc98fb1378f46f232ef932b773e0'/>
<id>urn:sha1:fc3db3927747fc98fb1378f46f232ef932b773e0</id>
<content type='text'>
No changes must be committed to the database if mkdir(1) fails.
</content>
</entry>
<entry>
<title>usergen: Replace use of non-standard mktemp(1)</title>
<updated>2023-10-19T15:35:38+00:00</updated>
<author>
<name>Xavier Del Campo Romero</name>
<email>xavi.dcr@tutanota.com</email>
</author>
<published>2023-10-19T13:34:24+00:00</published>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/slcl/commit/?id=8b24f8dcbbee5e888a32044c9c06eb4eff690a0e'/>
<id>urn:sha1:8b24f8dcbbee5e888a32044c9c06eb4eff690a0e</id>
<content type='text'>
Despite common use in several POSIX operating systems, mktemp(1) is not
defined by POSIX.1-2008, nor even POSIX.1-2017. As long as it is not
introduced, m4(1)'s mkstemp can be used with similar effect.
</content>
</entry>
<entry>
<title>usergen: Remove dependency against sha256sum(1)</title>
<updated>2023-09-15T23:00:14+00:00</updated>
<author>
<name>Xavier Del Campo Romero</name>
<email>xavi.dcr@tutanota.com</email>
</author>
<published>2023-09-15T22:57:34+00:00</published>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/slcl/commit/?id=bec528a979ccadbd6687ee6679cf4b43771db586'/>
<id>urn:sha1:bec528a979ccadbd6687ee6679cf4b43771db586</id>
<content type='text'>
sha256sum(1) is a GNU utility that might not be available under some
POSIX systems. Since OpenSSL is already a dependency, it makes sense to
reuse it to generate SHA256 digests.
</content>
</entry>
<entry>
<title>usergen: Remove dependency against xxd(1)</title>
<updated>2023-09-15T23:00:05+00:00</updated>
<author>
<name>Xavier Del Campo Romero</name>
<email>xavi.dcr@tutanota.com</email>
</author>
<published>2023-09-15T22:28:19+00:00</published>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/slcl/commit/?id=18bd0d83bec9fe636446b994553dc2fa99dd0530'/>
<id>urn:sha1:18bd0d83bec9fe636446b994553dc2fa99dd0530</id>
<content type='text'>
xxd(1) is closely related to vim(1), might not be available under
some POSIX systems.
</content>
</entry>
<entry>
<title>usergen: Reject non-numeric, invalid quota</title>
<updated>2023-09-15T22:59:46+00:00</updated>
<author>
<name>Xavier Del Campo Romero</name>
<email>xavi.dcr@tutanota.com</email>
</author>
<published>2023-09-15T22:40:22+00:00</published>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/slcl/commit/?id=d8f683d9ca604f6a0cd04a42738e55f77a89f06e'/>
<id>urn:sha1:d8f683d9ca604f6a0cd04a42738e55f77a89f06e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>usergen: Force newline after password input</title>
<updated>2023-05-28T10:07:37+00:00</updated>
<author>
<name>Xavier Del Campo Romero</name>
<email>xavi.dcr@tutanota.com</email>
</author>
<published>2023-05-28T10:07:22+00:00</published>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/slcl/commit/?id=20afa79038ec04e8a222d384410efec74ac40931'/>
<id>urn:sha1:20afa79038ec04e8a222d384410efec74ac40931</id>
<content type='text'>
</content>
</entry>
<entry>
<title>usergen: Do not print password to tty</title>
<updated>2023-05-18T18:02:55+00:00</updated>
<author>
<name>Xavier Del Campo Romero</name>
<email>xavi.dcr@tutanota.com</email>
</author>
<published>2023-05-18T18:02:55+00:00</published>
<link rel='alternate' type='text/html' href='https://gitea.privatedns.org/xavi/slcl/commit/?id=83b00b2cda355744fa7d7faac4440198e9f33fad'/>
<id>urn:sha1:83b00b2cda355744fa7d7faac4440198e9f33fad</id>
<content type='text'>
</content>
</entry>
</feed>
