Ignore:
Timestamp:
07/20/2014 03:55:27 PM (10 years ago)
Author:
Krejzi <krejzi@…>
Branches:
systemd-11177
Children:
d131a8a
Parents:
4321c68
Message:

Convert iptables, firewall section and haveged to systemd. Remove network service files from systemd-units.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@13509 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • systemd-units/Makefile

    r4321c68 raf8e1cb5  
    5858        systemctl enable gpm.service
    5959
     60install-haveged: create-dirs
     61        install -m ${CONFMODE} blfs/units/haveged.service ${UNITSDIR}/
     62        systemctl enable haveged.service
     63
    6064install-httpd: create-dirs
    6165        install -m ${CONFMODE} blfs/tmpfiles/httpd.conf ${TMPFILESDIR}/
     
    6367        systemd-tmpfiles --create httpd.conf
    6468        systemctl enable httpd.service
     69
     70install-iptables: create-dirs
     71        install -m ${CONFMODE} blfs/units/iptables.service ${UNITSDIR}/
     72        systemctl enable iptables.service
    6573
    6674install-kdm: create-dirs
     
    217225        rm -f ${UNITSDIR}/gpm.service
    218226
     227uninstall-haveged:
     228        systemctl stop haveged.service
     229        systemctl disable haveged.service
     230        rm -f ${UNITSDIR}/haveged.service
     231
    219232uninstall-httpd:
    220233        systemctl stop httpd.service
    221234        systemctl disable httpd.service
    222235        rm -f ${TMPFILESDIR}/httpd.conf ${UNITSDIR}/httpd.service
     236
     237uninstall-iptables:
     238        systemctl disable iptables.service
     239        rm -f ${UNITSDIR}/iptables.service
    223240
    224241uninstall-kdm:
     
    363380        install-gpm \
    364381        install-httpd \
     382        install-iptables \
    365383        install-kdm \
    366384        install-krb5 \
     
    391409        uninstall-gpm \
    392410        uninstall-httpd \
     411        uninstall-iptables \
    393412        uninstall-kdm \
    394413        uninstall-krb5 \
Note: See TracChangeset for help on using the changeset viewer.