summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-09-19Store masked state to respect user’s maskingdebian/1.10Michael Stapelberg3-6/+37
We cannot just unconditionally unmask services on installation time, otherwise “systemctl mask” executed by the user will be reversed. To that end, files in /var/lib/systemd/deb-systemd-helper-masked/ signal that d-s-h masked the service and is allowed to unmask it.
2013-09-19delete obsolete testMichael Stapelberg1-13/+0
This particular test was written under the (wrong) assumption that masking a service is pointing its install (!) symlink to /dev/null, while in reality it’s a different symlink.
2013-09-19update changelog, bump dependency on i-s-hMichael Stapelberg2-1/+10
2013-09-19i-s-h: delete the masked state dir in postinstMichael Stapelberg1-0/+6
2013-09-19Fix mask/unmask implementation (Thanks Michael Biebl)Michael Stapelberg2-55/+32
Turns out that I mistakenly linked the same symlinks to /dev/null that one would normally link to the service file, but mask links are orthogonal to that. As an example, for rsyslog.service, the mask link is /etc/systemd/system/rsyslog.service -> /dev/null, not /etc/systemd/system/mult-user.targe.wants/rsyslog.service fixes #714903
2013-09-19Bugfix: check whether /var/lib/systemd/deb-systemd-helper-enabled exists ↵Michael Stapelberg1-1/+3
(Thanks Alf Gaida) fixes #723693
2013-09-19d-s-h: add safety check for unmaskMichael Stapelberg1-1/+5
2013-09-18bump dependency on i-s-hdebian/1.9Michael Stapelberg1-1/+1
2013-09-18update changelogMichael Stapelberg1-0/+12
2013-09-15update maintscripts to mask a service while removed (but not purged)Michael Stapelberg3-7/+14
fixes #722521, #714903
2013-09-15use the state file contents for mask/unmaskMichael Stapelberg1-6/+8
This is necessary because when removing, the original service file might not be around anymore.
2013-09-15d-s-h: implement mask and unmask commandsMichael Stapelberg2-5/+112
2013-09-14tests: verify that masked services are not re-enabledMichael Stapelberg1-0/+13
2013-09-14dh_systemd_enable: skip unit files without an [Install] sectionMichael Stapelberg1-0/+18
fixes #721241
2013-09-14postinst: fix old files in /var/lib/systemd/deb-systemd-helper-enabledMichael Stapelberg1-0/+12
2013-09-12Bugfix: create files with permission 0644Michael Stapelberg1-0/+2
fixes #722524
2013-08-27dh_systemd_enable: document debian/package.{service,tmpfile}Michael Stapelberg1-0/+17
While these files are installed in dh_installinit for historic reasons, many people are looking for documentation in dh_systemd_enable. And they are not completely wrong, since dh_systemd_enable needs to install these files anyway, and will be the only script to do so in the future.
2013-07-25bump dependency on i-s-hdebian/1.8Michael Stapelberg1-1/+1
2013-07-24update changelogMichael Stapelberg1-0/+11
2013-07-24autoscripts: use --quiet for was-enabledMichael Stapelberg2-2/+2
2013-07-24deb-systemd-helper: support --quiet for (is|was)-enabledMichael Stapelberg1-2/+2
2013-07-24deb-systemd-helper: fix exit code for was-enabledMichael Stapelberg1-0/+1
2013-07-24s/debian-is-installed/debian-installed/Michael Stapelberg1-1/+1
2013-07-24dh_systemd_enable: use basename of the unit filesMichael Stapelberg1-2/+3
2013-07-24refactor state file reading, dump entries for debuggingMichael Stapelberg1-23/+23
2013-07-24DRY: introduce dsh_state_path(), use $dsh_state as consistent variable nameMichael Stapelberg1-32/+36
2013-07-24add test for deb-systemd-helper disableMichael Stapelberg1-0/+8
2013-07-24update files atomically to be more robust when being cancelledMichael Stapelberg1-15/+33
2013-07-24dh_systemd_enable: deal with changes in the [Install] sectionMichael Stapelberg3-12/+24
autoscripts/postinst-systemd-dont-enable now uses update-state instead of enable/disable which fixes accidental re-disabling of services. Both autoscripts call enable to create new symlinks, if necessary. Both autoscripts call update-state in case the service is not enabled in order to update the state file so that all service files will be removed on purge. See also http://bugs.debian.org/#717603
2013-07-24update testsuite to also cover more complex units and updatesMichael Stapelberg3-7/+240
Updates that add new service files or remove existing ones are now also tested (using update-state). Furthermore, the Also= and Alias= statements in unit files are now tested, too.
2013-07-24refactor; implement update-stateMichael Stapelberg1-49/+83
2013-07-24Bugfix: Open the file for reading and appending, seek to the beginningMichael Stapelberg1-1/+2
Otherwise, duplicate entries will end up in the state file. This bugfix was brought to you by the new test suite \o/.
2013-07-23deb-systemd-helper: implement debian-installed commandMichael Stapelberg1-2/+19
2013-07-23deb-systemd-helper: implement was-enabledMichael Stapelberg2-1/+200
2013-07-23remove inaccurate statement about systemctl requiring a running systemdMichael Stapelberg1-2/+1
2013-07-23add README for the test casesMichael Stapelberg1-0/+10
2013-07-23add test case for deb-systemd-helperMichael Stapelberg1-0/+137
2013-07-16use pod2man and install manpages, update changelogdebian/1.7Michael Stapelberg5-1/+18
2013-07-16Drop dependency on libmodule-install-perl (Closes: #716929)Jeremy Bicha4-32/+7
2013-07-15Fix syntax error in dh_systemd_startdebian/1.6Michael Stapelberg2-1/+6
2013-07-14bump dependency on i-s-h for --quietdebian/1.5Michael Stapelberg1-1/+1
2013-07-14dh_systemd_start: add --no-startMichael Stapelberg2-1/+8
2013-07-14update changelogMichael Stapelberg1-1/+3
2013-07-14dh_systemd_enable: add --no-enable, deb-systemd-helper: add --quietMichael Stapelberg3-5/+34
The latter is necessary to make the former work without confusing users :).
2013-07-01deb-systemd-helper: clean up /var/lib/systemd/deb-systemd-helper-enabled and ↵Michael Stapelberg2-0/+29
/etc/systemd to pass a piuparts run.
2013-06-27update changelog, bump dependency in dh_systemd_enabledebian/1.4Michael Stapelberg2-1/+8
2013-06-27Bugfix: ensure state directory exists before writing to it (Thanks uau, bigon)Michael Stapelberg1-0/+1
2013-06-26deb-systemd-invoke: remove wrong documentation (copy & paste mistake)Michael Stapelberg1-5/+0
2013-06-26init-system-helpers: add Breaks: systemd (<< 44-12)Michael Stapelberg1-0/+1
This ensures that on updates from stable, at least systemd 44-12 is present, which is the first version where the old trigger gained support for checking whether i-s-h is installed.
2013-06-19update package description to reflect dh_systemd_* splitdebian/1.3Michael Stapelberg1-4/+5