summaryrefslogtreecommitdiffstats
path: root/src/netctl.in
AgeCommit message (Collapse)AuthorFilesLines
2014-06-17Escape hatch for the restrictive umaskJouke Witteveen1-0/+1
Some things should not be run with the restrictive umask. This provides a means to do so: do_readable.
2014-05-06Add is-enabled subcommand to netctlJouke Witteveen1-13/+14
2014-05-06Fix default interface bindings (fourth time)Jouke Witteveen1-1/+1
The following changes introduced in Bash 4.3 necessitate this commit: - Setting the array attribute no longer initializes an array. - Empty-but-set arrays no longer pass [[ -v ]]. Previous attempts: feb669f4b2a15e6ea1d84be336f12be4650f9d2d 711c46457ae9fef52c7c529d89c67d0d526f73ef e8210827fd59e4539a70af55cb452b211633fedd
2014-02-25No daemon-reload in chroot (FS#37691)Jouke Witteveen1-4/+12
2013-06-04Expose version informationJouke Witteveen1-2/+0
Profiles now have access to it.
2013-05-18Rewording some lines regarding exit codesJouke Witteveen1-2/+2
2013-05-15Make a directory for a unit file link before creating the link itself.Evan Teitelman1-0/+1
The '/etc/systemd/system/multi-user.target.wants' directory does not necessarily exist before netctl is invoked.
2013-05-06Improve array handlingJouke Witteveen1-2/+3
When interpreted as an array, the empty string represents a 1-element array consisting of the empty string. This is actually very reasonable. Reported by: Thomas Bächler <thomas@archlinux.org>
2013-05-05Use pkg-config to obtain the systemd system unit directoryJouke Witteveen1-0/+181
This ensures the units are installed correctly if systemd is installed in an alternate location like /lib/systemd. Idem for the location of profile-based units. Based on a proposal by: Mike Gilbert <floppym@gentoo.org>