Difference between revisions of "Dhcdbd"

From CBLFS
Jump to navigationJump to search
(New page: {| style="text-align: left; background-color: AliceBlue;" |- !Download Source: | http://people.redhat.com/dcantrel/dhcdbd/dhcdbd-2.6.tar.bz2 |} ---- == Introduction to Dhcdbd == Dhcdbd ...)
 
 
(7 intermediate revisions by 3 users not shown)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://people.redhat.com/dcantrel/dhcdbd/dhcdbd-2.6.tar.bz2
+
| http://dcantrel.fedorapeople.org/dhcdbd/dhcdbd-2.10.tar.bz2
 
|}
 
|}
  
 
----
 
----
  
== Introduction to Dhcdbd ==
+
{{Package-Introduction|Dhcdbd provides [[D-BUS]] control of the ISC dhclient provided by [[Dhcp]].}}
 
 
Dhcdbd provides [[D-BUS]] control of the ISC dhclient provided by [[DHCP]].
 
  
 
== Dependencies ==
 
== Dependencies ==
  
 
=== Required ===
 
=== Required ===
* [[DHCP]] (for dhclient)
+
* [[Dhcp]] (for dhclient)
 
* [[D-BUS]]
 
* [[D-BUS]]
  
Line 21: Line 19:
 
Compile the package:
 
Compile the package:
  
  make
+
  make CC="gcc -DDHCDBD_DHCLIENT_LEASE_DIR=\\\"/var/state/dhcp/\\\" \
 +
        -DDHCLIENT_EXTENDED_OPTION_ENVIRONMENT=0"
  
 
Install the package
 
Install the package
Line 28: Line 27:
  
 
== Multilib ==
 
== Multilib ==
 +
'''''This package does not install any libraries so only one installation is needed.'''''
  
 
=== 32Bit ===
 
=== 32Bit ===
Line 33: Line 33:
 
Compile the package:
 
Compile the package:
  
  make CC="gcc ${BUILD32}"
+
USE_ARCH=32 \
 +
  make CC="gcc ${BUILD32} -DDHCDBD_DHCLIENT_LEASE_DIR=\\\"/var/state/dhcp/\\\" \
 +
        -DDHCLIENT_EXTENDED_OPTION_ENVIRONMENT=0"
  
 
Install the package
 
Install the package
Line 43: Line 45:
 
Compile the package:
 
Compile the package:
  
  make CC="gcc ${BUILDN32}"
+
USE_ARCH=n32 \
 +
  make CC="gcc ${BUILDN32} -DDHCDBD_DHCLIENT_LEASE_DIR=\\\"/var/state/dhcp/\\\" \
 +
        -DDHCLIENT_EXTENDED_OPTION_ENVIRONMENT=0"
  
 
Install the package
 
Install the package
Line 53: Line 57:
 
Compile the package:
 
Compile the package:
  
  make CC="gcc ${BUILD64}"
+
USE_ARCH=64 \
 +
  make CC="gcc ${BUILD64} -DDHCDBD_DHCLIENT_LEASE_DIR=\\\"/var/state/dhcp/\\\" \
 +
        -DDHCLIENT_EXTENDED_OPTION_ENVIRONMENT=0"
  
 
Install the package
 
Install the package
  
 
  make install
 
  make install
 +
 +
== Configuring ==
 +
 +
=== Bootscript ===
 +
 +
Create the bootscript:
 +
 +
cat > /etc/rc.d/init.d/dhcdbd << "EOF"
 +
#!/bin/sh
 +
# Begin $rc_base/init.d/dhcdbd
 +
 +
. /etc/sysconfig/rc
 +
. ${rc_functions}
 +
 +
case "${1}" in
 +
        start)
 +
                boot_mesg "Starting dhcdbd..."
 +
                loadproc /sbin/dhcdbd --system
 +
                ;;
 +
 +
        stop)
 +
                boot_mesg "Stopping dhcdbd..."
 +
                killproc /sbin/dhcdbd
 +
                ;;
 +
 +
        restart)
 +
                ${0} stop
 +
                sleep 1
 +
                ${0} start
 +
                ;;
 +
 +
        status)
 +
                statusproc /sbin/dhcdbd
 +
                ;;
 +
 +
        *)
 +
                echo "Usage: ${0} {start|stop|restart|status}"
 +
                exit 1
 +
                ;;
 +
esac
 +
 +
# End $rc_base/init.d/dhcdbd
 +
EOF
 +
chmod -v 754 /etc/rc.d/init.d/dhcdbd
 +
 +
Link it into the runlevels:
 +
 +
for link in /etc/rc.d/rc{{0,1,6}.d/K25,{2,3,4,5}.d/S25}dhcdbd; do
 +
  ln -sfv ../init.d/dhcdbd $link;
 +
done
 +
 +
[[Category:Network Applications]]

Latest revision as of 17:24, 19 March 2009

Download Source: http://dcantrel.fedorapeople.org/dhcdbd/dhcdbd-2.10.tar.bz2

Introduction to Dhcdbd

Dhcdbd provides D-BUS control of the ISC dhclient provided by Dhcp.

Project Homepage: Unknown

Dependencies

Required

Non-Multilib

Compile the package:

make CC="gcc -DDHCDBD_DHCLIENT_LEASE_DIR=\\\"/var/state/dhcp/\\\" \
        -DDHCLIENT_EXTENDED_OPTION_ENVIRONMENT=0"

Install the package

make install

Multilib

This package does not install any libraries so only one installation is needed.

32Bit

Compile the package:

USE_ARCH=32 \
make CC="gcc ${BUILD32} -DDHCDBD_DHCLIENT_LEASE_DIR=\\\"/var/state/dhcp/\\\" \
        -DDHCLIENT_EXTENDED_OPTION_ENVIRONMENT=0"

Install the package

make install

N32

Compile the package:

USE_ARCH=n32 \
make CC="gcc ${BUILDN32} -DDHCDBD_DHCLIENT_LEASE_DIR=\\\"/var/state/dhcp/\\\" \
        -DDHCLIENT_EXTENDED_OPTION_ENVIRONMENT=0"

Install the package

make install

64Bit

Compile the package:

USE_ARCH=64 \
make CC="gcc ${BUILD64} -DDHCDBD_DHCLIENT_LEASE_DIR=\\\"/var/state/dhcp/\\\" \
        -DDHCLIENT_EXTENDED_OPTION_ENVIRONMENT=0"

Install the package

make install

Configuring

Bootscript

Create the bootscript:

cat > /etc/rc.d/init.d/dhcdbd << "EOF"
#!/bin/sh
# Begin $rc_base/init.d/dhcdbd

. /etc/sysconfig/rc
. ${rc_functions}

case "${1}" in
        start)
                boot_mesg "Starting dhcdbd..."
                loadproc /sbin/dhcdbd --system
                ;;

        stop)
                boot_mesg "Stopping dhcdbd..."
                killproc /sbin/dhcdbd
                ;;

        restart)
                ${0} stop
                sleep 1
                ${0} start
                ;;

        status)
                statusproc /sbin/dhcdbd
                ;;

        *)
                echo "Usage: ${0} {start|stop|restart|status}"
                exit 1
                ;;
esac

# End $rc_base/init.d/dhcdbd
EOF
chmod -v 754 /etc/rc.d/init.d/dhcdbd

Link it into the runlevels:

for link in /etc/rc.d/rc{{0,1,6}.d/K25,{2,3,4,5}.d/S25}dhcdbd; do
  ln -sfv ../init.d/dhcdbd $link;
done