Changeset 369af35a
- Timestamp:
- 02/08/2004 12:50:23 AM (19 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, ken/inkscape-core-mods, krejzi/svn, lazarus, nosym, perl-modules, plabs/python-mods, qt5new, systemd-11177, systemd-13485, trunk, upgradedb, v5_1, v5_1-pre1, xry111/intltool, xry111/soup3, xry111/test-20220226
- Children:
- 437ad68
- Parents:
- e757b72a
- Files:
-
- 27 edited
Legend:
- Unmodified
- Added
- Removed
-
basicnet/netprogs/ncpfs/ncpfs-config.xml
re757b72a r369af35a 51 51 # Begin /etc/sysconfig/network-devices/ifup-ipx0 52 52 53 source/etc/sysconfig/rc || exit54 source$rc_functions || exit53 . /etc/sysconfig/rc || exit 54 . $rc_functions || exit 55 55 56 56 echo "Setting up the IPX protocol on eth0..." … … 65 65 # Begin /etc/sysconfig/network-devices/ifdown-ipx0 66 66 67 source/etc/sysconfig/rc || exit68 source$rc_functions || exit67 . /etc/sysconfig/rc || exit 68 . $rc_functions || exit 69 69 70 70 echo "Stopping IPX on the eth0 interface..." -
basicnet/netprogs/ntp/ntp-config.xml
re757b72a r369af35a 33 33 34 34 <screen><userinput><command>cat > /etc/rc.d/init.d/ntp << "EOF"</command> 35 #!/bin/ bash35 #!/bin/sh 36 36 # Begin $rc_base/init.d/ntp 37 source/etc/sysconfig/rc38 source$rc_functions37 . /etc/sysconfig/rc 38 . $rc_functions 39 39 case "$1" in 40 40 start) -
basicnet/netprogs/portmap/portmap-config.xml
re757b72a r369af35a 12 12 # Begin /etc/rc.d/init.d/portmap 13 13 14 source/etc/rc.d/init.d/functions14 . /etc/rc.d/init.d/functions 15 15 16 16 case "$1" in -
connect/dhcp/bootscripts.xml
re757b72a r369af35a 45 45 #!/bin/sh 46 46 47 source/etc/sysconfig/rc || exit48 source$rc_functions || exit49 source$network_devices/ifconfig.eth0 || exit47 . /etc/sysconfig/rc || exit 48 . $rc_functions || exit 49 . $network_devices/ifconfig.eth0 || exit 50 50 51 51 echo "Bringing up the eth0 interface..." … … 59 59 #!/bin/sh 60 60 61 source/etc/sysconfig/rc || exit62 source$rc_functions || exit63 source$network_devices/ifconfig.eth0 || exit61 . /etc/sysconfig/rc || exit 62 . $rc_functions || exit 63 . $network_devices/ifconfig.eth0 || exit 64 64 65 65 echo "Bringing down the eth0 interface..." -
connect/other/pppoe/pppoe-config.xml
re757b72a r369af35a 30 30 31 31 <screen><userinput><command>cat > /etc/rc.d/init.d/adsl << "EOF"</command> 32 #!/bin/ bash32 #!/bin/sh 33 33 # Begin $rc_base/init.d/adsl 34 34 … … 37 37 # adsl script written by DJ Lucas - dj@lucasit.com 38 38 39 source/etc/sysconfig/rc40 source$rc_functions39 . /etc/sysconfig/rc 40 . $rc_functions 41 41 42 42 case "$1" in -
content/databases/mysql/mysql-config.xml
re757b72a r369af35a 61 61 62 62 <screen><userinput><command>cat > /etc/rc.d/init.d/mysql << "EOF"</command> 63 #!/bin/ bash63 #!/bin/sh 64 64 # Begin $rc_base/init.d/ 65 65 … … 67 67 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org 68 68 69 source/etc/sysconfig/rc70 source$rc_functions69 . /etc/sysconfig/rc 70 . $rc_functions 71 71 72 72 pid_file=/var/lib/mysql/`/bin/hostname`.pid -
content/databases/postgresql/postgresql-config.xml
re757b72a r369af35a 18 18 19 19 <screen><userinput><command>cat > /etc/rc.d/init.d/postgresql << "EOF"</command> 20 #!/bin/ bash20 #!/bin/sh 21 21 # Begin $rc_base/init.d/postgresql 22 22 … … 24 24 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org 25 25 26 source/etc/sysconfig/rc27 source$rc_functions26 . /etc/sysconfig/rc 27 . $rc_functions 28 28 29 29 case "$1" in -
content/web/apache/apache-config.xml
re757b72a r369af35a 26 26 27 27 <screen><userinput><command>cat > /etc/rc.d/init.d/apache << "EOF"</command> 28 #!/bin/ bash28 #!/bin/sh 29 29 30 source/etc/sysconfig/rc31 source$rc_functions30 . /etc/sysconfig/rc 31 . $rc_functions 32 32 33 33 case "$1" in -
content/web/proftpd/proftpd-config.xml
re757b72a r369af35a 73 73 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org 74 74 75 source/etc/sysconfig/rc76 source$rc_functions75 . /etc/sysconfig/rc 76 . $rc_functions 77 77 78 78 case "$1" in -
general/sysutils/fcron/fcron-config.xml
re757b72a r369af35a 29 29 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org 30 30 31 source/etc/sysconfig/rc32 source$rc_functions31 . /etc/sysconfig/rc 32 . $rc_functions 33 33 34 34 case "$1" in -
general/sysutils/gpm/gpm-config.xml
re757b72a r369af35a 15 15 # GPM specific parts by Mark Hymers - markh@linuxfromscratch.org 16 16 17 source/etc/sysconfig/rc18 source$rc_functions17 . /etc/sysconfig/rc 18 . $rc_functions 19 19 20 20 if [ -f /etc/sysconfig/mouse ] -
gnome/other/gdm/gdm-config.xml
re757b72a r369af35a 34 34 be removed for GNOME_PREFIX=/usr:</para> 35 35 <screen><userinput><command>cat > /etc/rc.d/init.d/gdm << "EOF"</command> 36 #!/bin/ bash36 #!/bin/sh 37 37 # Begin $rc_base/init.d/gdm 38 38 … … 40 40 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org 41 41 42 source/etc/sysconfig/rc43 source$rc_functions42 . /etc/sysconfig/rc 43 . $rc_functions 44 44 45 45 case "$1" in -
introduction/welcome/changelog.xml
re757b72a r369af35a 11 11 12 12 <itemizedlist> 13 14 <listitem><para>February 7th, 2004 [igor]: Changed all occurrences of 15 "source" in init scripts to ".", suggested by Nathan 16 Coulson.</para></listitem> 13 17 14 18 <listitem><para>February 7th, 2004 [igor]: Updated to -
multimedia/libdriv/alsa/utils/alsa-utils-config.xml
re757b72a r369af35a 33 33 # Stores mixer settings in the default location: /etc/asound.state 34 34 35 source/etc/sysconfig/rc36 source$rc_functions35 . /etc/sysconfig/rc 36 . $rc_functions 37 37 38 38 case "$1" in -
postlfs/config/random.xml
re757b72a r369af35a 26 26 # Random script elements by Larry Lawrence 27 27 28 source/etc/sysconfig/rc29 source$rc_functions28 . /etc/sysconfig/rc 29 . $rc_functions 30 30 31 31 case "$1" in -
pst/printing/cups/cups-config.xml
re757b72a r369af35a 29 29 # Start or stop the CUPS server based upon the first argument to the script. 30 30 31 source/etc/sysconfig/rc32 source$rc_functions31 . /etc/sysconfig/rc 32 . $rc_functions 33 33 34 34 case $1 in -
pst/printing/gimp-print/gimp-print.ent
re757b72a r369af35a 6 6 <!ENTITY gimp-print-desc SYSTEM "gimp-print-desc.xml"> 7 7 <!ENTITY gimp-print-version "4.2.6"> 8 <!ENTITY gimp-print-download-http "http:// twtelecom.dl.sourceforge.net/sourceforge/gimp-print/gimp-print-&gimp-print-version;.tar.gz">8 <!ENTITY gimp-print-download-http "http://umn.dl.sourceforge.net/sourceforge/gimp-print/gimp-print-&gimp-print-version;.tar.gz"> 9 9 <!ENTITY gimp-print-download-ftp ""> 10 10 <!ENTITY gimp-print-size "4.9 MB"> -
pst/printing/lprng/lprng-config.xml
re757b72a r369af35a 27 27 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org 28 28 29 source/etc/sysconfig/rc30 source$rc_functions29 . /etc/sysconfig/rc 30 . $rc_functions 31 31 32 32 case "$1" in -
server/mail/exim/exim-config.xml
re757b72a r369af35a 34 34 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org 35 35 36 source/etc/sysconfig/rc37 source$rc_functions36 . /etc/sysconfig/rc 37 . $rc_functions 38 38 39 39 case "$1" in -
server/mail/postfix/postfix-config.xml
re757b72a r369af35a 54 54 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org 55 55 56 source/etc/sysconfig/rc57 source$rc_functions56 . /etc/sysconfig/rc 57 . $rc_functions 58 58 59 59 case "$1" in -
server/mail/sendmail/sendmail-config.xml
re757b72a r369af35a 33 33 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org 34 34 35 source/etc/sysconfig/rc36 source$rc_functions35 . /etc/sysconfig/rc 36 . $rc_functions 37 37 38 38 case "$1" in -
server/other/bind/bind-config.xml
re757b72a r369af35a 154 154 155 155 <screen><userinput><command>cat > /etc/rc.d/init.d/bind << "EOF"</command> 156 #!/bin/ bash156 #!/bin/sh 157 157 # Begin $rc_base/init.d/bind 158 158 # Based on sysklogd script from LFS-3.1 and earlier. 159 159 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org 160 source/etc/sysconfig/rc161 source$rc_functions160 . /etc/sysconfig/rc 161 . $rc_functions 162 162 case "$1" in 163 163 start) -
server/other/dhcp/dhcp-config.xml
re757b72a r369af35a 26 26 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org 27 27 28 source/etc/sysconfig/rc29 source$rc_functions28 . /etc/sysconfig/rc 29 . $rc_functions 30 30 31 31 case "$1" in -
server/other/openssh/openssh-config.xml
re757b72a r369af35a 29 29 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org 30 30 31 source/etc/sysconfig/rc32 source$rc_functions31 . /etc/sysconfig/rc 32 . $rc_functions 33 33 34 34 case "$1" in -
server/other/rsync/rsync-config.xml
re757b72a r369af35a 42 42 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org 43 43 44 source/etc/sysconfig/rc45 source$rc_functions44 . /etc/sysconfig/rc 45 . $rc_functions 46 46 47 47 case "$1" in -
server/other/samba/samba-config.xml
re757b72a r369af35a 71 71 <para>Create the <application>Samba</application> boot script:</para> 72 72 <screen><userinput><command>cat > /etc/rc.d/init.d/samba << "EOF"</command> 73 #!/bin/ bash73 #!/bin/sh 74 74 # Begin $rc_base/init.d/samba 75 75 # Based on sysklogd script from LFS-3.1 and earlier. 76 76 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org 77 source/etc/sysconfig/rc78 source$rc_functions77 . /etc/sysconfig/rc 78 . $rc_functions 79 79 case "$1" in 80 80 start) -
server/other/xinetd/xinetd-config.xml
re757b72a r369af35a 28 28 29 29 <screen><userinput><command>cat > /etc/rc.d/init.d/xinetd << "EOF"</command> 30 #!/bin/ bash30 #!/bin/sh 31 31 # Begin $rc_base/init.d/xinetd 32 32 # Based on sysklogd script from LFS-3.1 and earlier. 33 33 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org 34 source/etc/sysconfig/rc35 source$rc_functions34 . /etc/sysconfig/rc 35 . $rc_functions 36 36 case "$1" in 37 37 start)
Note:
See TracChangeset
for help on using the changeset viewer.