summaryrefslogtreecommitdiff
path: root/.gitignore
AgeCommit message (Collapse)AuthorFilesLines
2015-06-27udev: Remove accelerometer helperBastien Nocera1-1/+0
It's moved to the iio-sensor-proxy D-Bus service.
2015-06-15firewall: rename fw-util.[ch] → firewall-util.[ch]Daniel Mack1-1/+1
The names fw-util.[ch] are too ambiguous, better rename the files to firewall-util.[ch]. Also rename the test accordingly.
2015-06-13sd-netlink: rename from sd-rtnlTom Gundersen1-2/+2
2015-06-03remove gudev and gtk-docKay Sievers1-1/+0
The library moved to: https://git.gnome.org/browse/libgudev/
2015-05-30tests: add test-conf-parserRonny Chevalier1-0/+1
2015-05-15.gitignore: add GNU GLOBAL filesŁukasz Stelmach1-0/+4
2015-04-29test: rename test-bus-kernel-benchmark to test-bus-benchmarkTom Gundersen1-1/+1
This can now benchmark more than just kdbus.
2015-04-28fsck: remove fsckd again, but keep the door open for external replacementLennart Poettering1-1/+0
For a longer discussion see this: http://lists.freedesktop.org/archives/systemd-devel/2015-April/030175.html This introduces /run/systemd/fsck.progress as a simply AF_UNIX/SOCK_STREAM socket. If it exists and is connectable we'll connect fsck's -c switch with it. If external programs want to get progress data they should hence listen on this socket and will get all they need via that socket. To get information about the connecting fsck client they should use SO_PEERCRED. Unless /run/systemd/fsck.progress is around and connectable this change reverts back to v219 behaviour where we'd forward fsck output to /dev/console on our own.
2015-04-24shutdownd: kill the old implementationDaniel Mack1-1/+0
Not that all functionality has been ported over to logind, the old implementation can be removed. There goes one of the oldest parts of the systemd code base.
2015-04-23journal: use audit event names instead of numbersZbigniew Jędrzejewski-Szmek1-0/+1
<audit-1400> is replaced by AVC, etc. A fallback mechanism is provided for unlisted event types. Occasionally new types are added to the kernel, but not too often. Add a simple "test", which simply prints the mapping.
2015-04-11shared: add terminal-util.[ch]Ronny Chevalier1-0/+1
2015-04-10shared: add process-util.[ch]Ronny Chevalier1-0/+1
2015-03-09importd: add API for exporting container/VM imagesLennart Poettering1-0/+1
Also, expose it in machinectl.
2015-02-18fsckd daemon for inter-fsckd communicationDidier Roche1-0/+1
Add systemd-fsckd multiplexer which accepts multiple systemd-fsck instances to connect to it and sends progress report. systemd-fsckd then computes and writes to /dev/console the number of devices currently being checked and the minimum fsck progress. This will be used for interactive progress report and cancelling in plymouth. systemd-fsckd stops on idle when no systemd-fsck is connected. Make the necessary changes to systemd-fsck to connect to the systemd-fsckd socket.
2015-02-18gummiboot/sd-boot/systemd-boot: rename galoreTom Gundersen1-1/+1
What used to be gummiboot, was renamed sd-boot when it was merged into systemd. Let's try to be a bit more consistent with the rest of systemd and rename it again as follows: The EFI bootloader is now called 'systemd-bootx64.efi', and its sources are in 'src/boot/efi/'. The drop-in directory where bootctl will find EFI loaders is now /usr/lib/systemd/boot/efi/.
2015-02-17sd-boot: add EFI boot manager and stub loaderKay Sievers1-0/+3
2015-02-10.gitignore: add systemd-pullVincent Batts1-0/+1
2015-01-22import: introduce new mini-daemon systemd-importd, and make machinectl a ↵Lennart Poettering1-0/+1
client to it The old "systemd-import" binary is now an internal tool. We still use it as asynchronous backend for systemd-importd. Since the import tool might require some IO and CPU resources (due to qcow2 explosion, and decompression), and because we might want to run it with more minimal priviliges we still keep it around as the worker binary to execute as child process of importd. machinectl now has verbs for pulling down images, cancelling them and listing them.
2015-01-17bus-proxy: bring back systemd-stdio-bridgeDavid Herrmann1-0/+1
Now that we want to make bus-proxy multi-threaded, we have to bring back the systemd-stdio-bridge for our TCP use-cases.
2015-01-16import: support importing qcow2 imagesLennart Poettering1-0/+1
With this change the import tool will now unpack qcow2 images into normal raw disk images, suitable for usage with nspawn. This allows has the benefit of also allowing importing Ubuntu Cloud images for usage with nspawn.
2015-01-13shared: add minimal firewall manipulation helpers for establishing NAT ↵Lennart Poettering1-0/+1
rules, using libiptc
2015-01-11.gitignore: add new tests and sort tests alphabeticallyZbigniew Jędrzejewski-Szmek1-6/+8
2015-01-08test-verbs: add unit tests for verbs minilibDave Reisner1-0/+1
2015-01-05journald: process SIGBUS for the memory maps we set upLennart Poettering1-0/+1
Even though we use fallocate() it appears that file systems like btrfs will trigger SIGBUS on certain low-disk-space situation. We should handle that, hence catch the signal, add it to a list of invalidated pages, and replace the page with an empty memory area. After each write check if SIGBUS was triggered, and consider the write invalid if it was. This should make journald a lot more robust with file systems where fallocate() is not reliable, for example all CoW file systems (btrfs...), where changing written data can fail with disk full errors. https://bugzilla.redhat.com/show_bug.cgi?id=1045810
2014-12-23gitignore: hide test-lldp filesLennart Poettering1-0/+1
2014-12-19import: add new minimal tool "systemd-import" for pulling down foreign ↵Lennart Poettering1-0/+1
containers and install them locally This adds a simply but powerful tool for downloading container images from the most popular container solution used today. Use it like this: # systemd-import pull-dck mattdm/fedora # systemd-nspawn -M fedora This will donwload the layers for "mattdm/fedora", and make them available locally as /var/lib/container/fedora. The tool is pretty complete, as long as it's only about pulling down images, or updating them. Pushing or searching is not supported yet.
2014-12-18systemd-hwdb: introduce new toolTom Gundersen1-0/+1
This pulls out the hwdb managment from udevadm into an independent tool. The old code is left in place for backwards compatibility, and easy of testing, but all documentation is dropped to encourage use of the new tool instead.
2014-12-15shared: add minimal JSON tokenizerLennart Poettering1-0/+1
2014-12-12shared: add new btrfs-util.[ch] helpers for doing common btrfs operationLennart Poettering1-0/+1
2014-12-10util: introduce our own gperf based capability listLennart Poettering1-0/+1
This way, we can ensure we have a more complete, up-to-date list of capabilities around, always.
2014-12-03nss-myhostname: always resolve the host name "gateway" to the local default ↵Lennart Poettering1-0/+1
gateway This is useful inside of containers or local networks to intrdouce a stable name of the default gateway host (in case of containers usually the host, in case of LANs usually local router).
2014-12-03machine-id-commit: Introduce machine-id-commit binaryDidier Roche1-0/+1
This binary enables to commit transient machine-id on disk if it becomes writable.
2014-11-24build-sys: support local ./configure argumentsDavid Herrmann1-0/+1
I often want to use the awesome "./autogen.sh [cmd]" arguments, but have to append some custom ./configure options. For now, I always had to edit autogen.sh manually, or copy the full commands out of it and run it myself. As I think this is super annoying, this commit adds support for ".config.args" files in $topdir. If it exists, any content is just appended to $args, thus to any ./configure invokation of autogen.sh. Maybe autotools provide something similar out-of-the-box. In that case, feel free to revert this and lemme know!
2014-11-13tests: add test-executeRonny Chevalier1-0/+1
add tests for the following directives: - WorkingDirectory - Personality - IgnoreSIGPIPE - PrivateTmp - SystemCallFilter: It makes test/TEST-04-SECCOMP obsolete, so it has been removed. - SystemCallErrorNumber - User - Group - Environment
2014-11-08update .gitignoreRonny Chevalier1-2/+0
2014-11-08tests: add test-pathRonny Chevalier1-0/+1
It tests all available directives of Path units: - PathChanged - PathModified - PathExists - PathExisysGlob - DirectoryNotEmpty - MakeDirectory - DirectoryMode - Unit
2014-11-06shared: rename condition-util.[ch] to condition.[ch]Lennart Poettering1-1/+1
Now that we only have one file with condition implementations around, we can drop the -util suffix and simplify things a bit.
2014-11-01libsystemd-networkd: introduce sd-pppoe libraryTom Gundersen1-0/+1
This library negotiates a PPPoE channel. It handles the discovery stage and leaves the session stage to the kernel. A further PPP library is needed to actually set up a PPP unit (negotatie LCP, IPCP and do authentication), so in isolation this is not yet very useful. The test program has two modes: # ./test-pppoe will create a veth tunnel in a new network namespace, start pppoe-server on one end and this client library on the other. The pppd server will time out as no LCP is performed, and the client will then shut down gracefully. # ./test-pppoe eth0 will run the client on eth0 (or any other netdev), and requires a PPPoE server to be reachable on the local link.
2014-11-01shared: add helpers for unaligend BE read/writeTom Gundersen1-0/+1
2014-10-31tests: add test-copyRonny Chevalier1-0/+1
2014-10-31tests: add test-locale-utilRonny Chevalier1-0/+1
2014-10-31remove references of readaheadRonny Chevalier1-1/+0
2014-10-28login: remove multi-seat-xTimofey Titovets1-1/+0
2014-10-03console: add user console daemonDavid Herrmann1-0/+1
This adds a first draft of systemd-consoled. This is still missing a lot of features and does some rather primitive rendering. However, it shows the direction this code is going and serves as basis for further testing. The systemd-consoled binary should be run as `systemd --user' unit. It automatically picks up any session marked as Desktop=SYSTEMD-CONSOLE. Therefore, you can use any login-manager you want (ranging from /bin/login to gdm) to create sessions for systemd-consoled. However, the sessions managers must be prepared to set the Desktop= variable properly. The user-session is called `systemd-console', only the daemon providing the terminal environment is called `systemd-consoled' (mind the 'd'). So far, only a single terminal session is provided on each opened user-session. However, we support multiple user-sessions (even across multiple seats) just fine. In the future, the workspace logic will get extended so you can have multiple terminal sessions in a single user-session for easier access. Note that this is still experimental! Instructions on how to run it will follow shortly.
2014-10-01gitignore: add test-setThomas Hindoe Paaboel Andersen1-0/+1
2014-09-20bus-policy: add test utilityDaniel Mack1-0/+1
Add some test files and routines for dbus policy checking.
2014-09-19terminal: add systemd-modeset debugging toolDavid Herrmann1-0/+1
The systemd-modeset tool is meant to debug grdev issues. It simply displays morphing colors on any found display. This is pretty handy to look for tearing in the backends and debug hotplug issues. Note that this tool requires systemd-logind to be compiled from git (there're important fixes that haven't been released, yet).
2014-08-27terminal: add systemd-evcat input debugging toolDavid Herrmann1-0/+1
Like systemd-subterm, this new systemd-evcat tool should only be used to debug libsystemd-terminal. systemd-evcat attaches to the running session and pushes all evdev devices attached to the current session into an idev-session. All events of the created idev-devices are then printed to stdout for input-event debugging.
2014-08-26hibernate-resume-generator: add a generator for instantiating the resume unit.Ivan Shapovalov1-0/+1
hibernate-resume-generator understands resume= kernel command line parameter and instantiates the systemd-resume@.service accordingly if it is passed. This enables resume from hibernation using device specified on the kernel command line, and it may be specified either as "/dev/disk/by-foo/bar" or "FOO=bar", not only "/dev/sdXY" which is understood by the in-kernel implementation. So now resume= is brought on par with root= in terms of possible ways to specify a device.
2014-08-26hibernate-resume: add a tool to write a device node's major:minor to ↵Ivan Shapovalov1-0/+1
/sys/power/resume. This can be used to initiate a resume from hibernation by path to a swap device containing the hibernation image. The respective templated unit is also added. It is instantiated using path to the desired resume device.