X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage3%2Fpkg%2Fddclient;h=2a3d29d1eb6062d252aedd17ef1c6bfc31efcca7;hb=0315072ae3bd307eee71718e1a59f923edcbdaca;hp=46de4af4382f22db29f261c574ef2b8867ad78d3;hpb=3dae4c554ec18f465eb6ee5e6efdbdbe8557e13c;p=hvlinux.git diff --git a/stage3/pkg/ddclient b/stage3/pkg/ddclient index 46de4af..2a3d29d 100644 --- a/stage3/pkg/ddclient +++ b/stage3/pkg/ddclient @@ -1,22 +1,13 @@ -#!/bin/sh -set -o errexit - -# First argument of this script is the package name - -# Reading system configuration informations, functions and package versions. -source ../sysinfos -source ../functions -source ../packages-list +#!/bin/bash -# Applying patches (if any) -apply_patches ${1} +hvbuild() +{ + cd ${LFS_TMP}/${PACKAGE} + install ddclient /usr/sbin + mkdir -p /etc/ddclient + cp sample-etc_ddclient.conf /etc/ddclient/ddclient.conf -cd ${LFS_TMP}/${1} -install ddclient /usr/sbin -mkdir -p /etc/ddclient -cp sample-etc_ddclient.conf /etc/ddclient/ddclient.conf - -cat > /var/lib/dhcpc/dhcpcd.exe << "EOF" + cat > /var/lib/dhcpc/dhcpcd.exe << "EOF" #!/bin/sh ## Update the DNS server unless the IP address is a private address @@ -58,6 +49,5 @@ esac exit $? EOF -chmod 740 /var/lib/dhcpc/dhcpcd.exe - -exit $? + chmod 740 /var/lib/dhcpc/dhcpcd.exe +}