Skip to content

Commit

Permalink
readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
paleg committed Aug 22, 2017
1 parent 0a01560 commit 5dc624e
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 16 deletions.
18 changes: 9 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -113,26 +113,26 @@ For systemd:

.. code-block:: bash
cp share/init/watcher.service /etc/systemd/system/watcher.service
cp share/init/fs-watcher.service /etc/systemd/system/fs-watcher.service
systemctl daemon-reload
systemctl enable watcher
systemctl start watcher
systemctl enable fs-watcher
systemctl start fs-watcher
For SysV:

.. code-block:: bash
cp share/init/watcher.sysvinit /etc/init.d/watcher
update-rc.d watcher defaults
/etc/init.d/watcher start
cp share/init/fs-watcher.sysvinit /etc/init.d/fs-watcher
update-rc.d fs-watcher defaults
/etc/init.d/fs-watcher start
For OpenRC:

.. code-block:: bash
cp share/init/watcher.openrc /etc/init.d/watcher
rc-update add watcher default
/etc/init.d/watcher start
cp share/init/fs-watcher.openrc /etc/init.d/fs-watcher
rc-update add fs-watcher default
/etc/init.d/fs-watcher start
Configuration
Expand Down
4 changes: 2 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
fs-watcher (1.0.4-0) unstable; urgency=low
fs-watcher (1.0.5-0) unstable; urgency=low

* Latest filesystem watcher release.

-- Oleg Palij <[email protected]> Tue, 22 Aug 2017 11:12:02 -0000
-- Oleg Palij <[email protected]> Tue, 22 Aug 2017 12:17:15 -0000

File renamed without changes.
7 changes: 4 additions & 3 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ override_dh_auto_build:
override_dh_auto_install:
dh_auto_install -- --install-scripts=/usr/sbin

# don't enable or starts the service by default
override_dh_installinit:
dh_installinit --no-start
override_dh_systemd_enable:
# Do not enable the file by default on purpose.
# The user should enable it only after making sure the configuration is
# appropriate for his/her computer.
override_dh_systemd_start:
2 changes: 1 addition & 1 deletion fs_watcher/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.4'
__version__ = '1.0.5'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def debian ():
data_files=[
('share/fs-watcher/etc', ['debian/watcher.ini']),
('share/fs-watcher/init', ['debian/fs-watcher.service',
'debian/fs-watcher.init',
'debian/fs-watcher.sysvinit',
'debian/fs-watcher.openrc']),
],
# generate platform specific start script
Expand Down

0 comments on commit 5dc624e

Please sign in to comment.