Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-11-09 | Merge pull request #1629 from ssahani/vxlan | Tom Gundersen | |
networkd: vxlan add option to set FDB entries | |||
2015-11-09 | Merge pull request #1821 from darkcircle/ko-catalog-translation | Lennart Poettering | |
l10n: add a new Korean translation for the catalog | |||
2015-11-09 | Merge pull request #1820 from michich/errno-v2 | Daniel Mack | |
[v2] treewide: treatment of errno and other cleanups | |||
2015-11-10 | add a new Korean translation for the catalog | Seong-ho Cho | |
2015-11-09 | Merge pull request #1762 from endocode/dongsu/l10n-ko-msgs | Lennart Poettering | |
po: update Korean translation | |||
2015-11-09 | treewide: apply errno.cocci | Michal Schmidt | |
with small manual cleanups for style. | |||
2015-11-09 | coccinelle: additional errno.cocci hunk | Michal Schmidt | |
rewrites: log_error_errno(errno, ...); return -errno; into: return log_error_errno(errno, ...); | |||
2015-11-09 | coccinelle: errno.cocci improvements | Michal Schmidt | |
Apply to all log_*_errno loglevels. | |||
2015-11-09 | Merge pull request #1798 from evverx/fix-test-udev | Lennart Poettering | |
test-udev: small fixes | |||
2015-11-09 | Merge pull request #1799 from jengelh/doc | Lennart Poettering | |
doc: typo and ortho fixes | |||
2015-11-09 | Merge pull request #1807 from michich/boot-timer | Lennart Poettering | |
core/timer: in containers OnBootSec should count from container startup | |||
2015-11-09 | Merge pull request #1794 from karelzak/size_limit | Lennart Poettering | |
core: support IEC suffixes for RLIMIT stuff | |||
2015-11-09 | Merge pull request #1817 from iaguis/nspawn-custom-service-3 | Lennart Poettering | |
nspawn: support custom container service name | |||
2015-11-09 | detect-virt: add rkt app container runtime | Iago López Galeiras | |
2015-11-09 | nspawn: support custom container service name | Iago López Galeiras | |
We were hardcoding "systemd-nspawn" as the value of the $container env variable and "nspawn" as the service string in machined registration. This commit allows the user to configure it by setting the $SYSTEMD_NSPAWN_CONTAINER_SERVICE env variable when calling systemd-nspawn. If $SYSTEMD_NSPAWN_CONTAINER_SERVICE is not set, we use the string "systemd-nspawn" for both, fixing the previous inconsistency. | |||
2015-11-09 | Merge pull request #1796 from michaelolbrich/journal-size | Lennart Poettering | |
journal: reduce minimum journal file size to 512 KiB | |||
2015-11-07 | core/timer: in containers OnBootSec should count from container startup | Michal Schmidt | |
In Fedora dnf-makecache.timer specifies OnBootSec=10min, but it fired during boot in systemd-nspawn, because the clock ticks since the host's boot. Fix it by treating OnBootSec the same as OnStartupSec when running in a container. | |||
2015-11-07 | Merge pull request #1801 from chuyd/fix-typos | Daniel Mack | |
test: Fix typo in TEST-03-JOBS/test-jobs.sh | |||
2015-11-07 | Merge pull request #1803 from phomes/unused-var | Daniel Mack | |
core: remove unused variable | |||
2015-11-07 | core: remove unused variable | Thomas Hindoe Paaboel Andersen | |
unused since 7b2313f5 | |||
2015-11-06 | test: Fix typo in TEST-03-JOBS/test-jobs.sh | Jesus Ornelas Aguayo | |
Fix typo s/enqueueing/enqueuing/ Signed-off-by: Jesus Ornelas Aguayo <jesus.ornelas.aguayo@intel.com> | |||
2015-11-06 | Merge pull request #1795 from msekletar/networkd-forward | Ronny Chevalier | |
networkd: fix option name in log message | |||
2015-11-06 | Merge pull request #1800 from evverx/fix-test-execute | Ronny Chevalier | |
test-execute: don't use /usr/bin/uname. use sh and PATH | |||
2015-11-06 | test-execute: don't use /usr/bin/uname. use sh and PATH | Evgeny Vereshchagin | |
2015-11-06 | doc: use expanded forms for written style | Jan Engelhardt | |
2015-11-06 | doc: correct orthography, word forms and missing/extraneous words | Jan Engelhardt | |
2015-11-06 | test-udev: small fixes | Evgeny Vereshchagin | |
* print '\n' on error * use UDEVLIBEXECDIR (udev_rules_new uses it too) | |||
2015-11-06 | doc: correct punctuation and improve typography in documentation | Jan Engelhardt | |
2015-11-06 | journal: reduce minimum journal file size to 512 KiB | Michael Olbrich | |
For low end embedded systems 4 MiB for each journal file is a lot of memory. Journald will use at least 512 KiB even if JOURNAL_FILE_SIZE_MIN is set to less than that so just use 512 KiB. | |||
2015-11-06 | core: support IEC suffixes for RLIMIT stuff | Karel Zak | |
Let's make things more user-friendly and support for example LimitAS=16G rather than force users to always use LimitAS=16106127360. The change is relevant for options: [Default]Limit{FSIZE,DATA,STACK,CORE,RSS,AS,MEMLOCK,MSGQUEUE} The patch introduces config_parse_bytes_limit(), it's the same as config_parse_limit() but uses parse_size() tu support the suffixes. Addresses: https://github.com/systemd/systemd/issues/1772 | |||
2015-11-06 | networkd: fix option name in log message | Michal Sekletar | |
2015-11-05 | sd-resolve: simplify pthread_join() call | Michal Schmidt | |
POSIX says: The pthread_join() function shall not return an error code of [EINTR]. | |||
2015-11-05 | timesync: return negative errno from manager_adjust_clock() on error | Michal Schmidt | |
2015-11-05 | nspawn: save errno before reopening log after exec failure | Michal Schmidt | |
2015-11-05 | nspawn: no fake errno | Michal Schmidt | |
The S_ISREG test does not set errno, so don't use it in the error message. | |||
2015-11-05 | nspawn: simplify error returns | Michal Schmidt | |
Use the "return log_error_errno(...)" idiom to have fewer curly braces. The last hunk also fixes the return value of setup_journal(), but the fix has no practical effect. | |||
2015-11-05 | libsystemd-network: inet_pton does not set errno on parsing error | Michal Schmidt | |
it would set errno only for an invalid address family. Also fix a copy&paste error in one error string. | |||
2015-11-05 | import: report error before losing errno | Michal Schmidt | |
unlink() may change errno, so report the error from rename() first, then unlink. | |||
2015-11-05 | firstboot: fix errno sign | Michal Schmidt | |
2015-11-05 | journal: posix_fallocate() does not set errno | Michal Schmidt | |
manpage says: posix_fallocate() returns zero on success, or an error number on failure. Note that errno is not set. | |||
2015-11-05 | treewide: use the negative error codes returned by our functions | Michal Schmidt | |
Our functions return negative error codes. Do not rely on errno being set after calling our own functions. | |||
2015-11-05 | journal: fix incorrect errno reporting | Michal Schmidt | |
pread() returns -1 on error and sets errno. Do not use the -1 as errno. | |||
2015-11-05 | journal: use int64_t instead of long for catalog file size | Michal Schmidt | |
This replaces the use of ftell() with ftello() for 64-bit size on all archs. Also drops a pointless check for NULL before calling strbuf_cleanup(). | |||
2015-11-05 | journal: drop unnecessary write_catalog() parameter | Michal Schmidt | |
write_catalog() use the hashmap only to get its size. The size is already given in parameter 'n'. | |||
2015-11-05 | log: whitespace style fix | Michal Schmidt | |
2015-11-05 | tty-ask-password-agent: fix typo in error message | Michal Schmidt | |
2015-11-04 | Merge pull request #1761 from ssahani/word | Lennart Poettering | |
core: parse socket port to extract_first_word | |||
2015-11-04 | Merge pull request #1778 from rhdrjones/detect-virt | Lennart Poettering | |
detect-virt: one fix and arm/aarch64 dmi detection | |||
2015-11-04 | Merge pull request #1780 from evverx/fix-install-dbus | Ronny Chevalier | |
test-functions: fix dbus-1 installation | |||
2015-11-04 | test-functions: fix dbus-1 installation | Evgeny Vereshchagin | |
The basic setup for the well-known system and session buses is now done in read-only files in ${datadir} (normally /usr/share). See the NEWS entry for 1.9.18 for details. http://cgit.freedesktop.org/dbus/dbus/tree/NEWS |