diff options
| author | Xufeng Zhang <xufeng.zhang@windriver.com> | 2014-03-11 13:54:10 +0800 |
|---|---|---|
| committer | Joe MacDonald <joe@deserted.net> | 2014-03-14 08:51:45 -0400 |
| commit | ed0a2852ecc75d5dd87ab556f698ea2816b18bd5 (patch) | |
| tree | bc51b5bcf07133253d5d31905a9fe15d1fd6e225 /meta-networking | |
| parent | 7601d0a551fba612d2497e4ecae00e1af46d9c13 (diff) | |
| download | meta-openembedded-ed0a2852ecc75d5dd87ab556f698ea2816b18bd5.tar.gz | |
ntp: Moving relevant files from /usr/bin to /usr/sbin
"--with-binsubdir" controls whether we use bin_PROGRAMS or
sbin_PROGRAMS while installing executable files in ntp
Makefile, in order to install all the relevant files in
/usr/sbin instead of /usr/bin, we can pass "--with-binsubdir=sbin"
in ntp configure cmdline.
Accordingly, updating the path for the files which are
contained in rpm packages.
Signed-off-by: Xufeng Zhang <xufeng.zhang@windriver.com>
Signed-off-by: Joe MacDonald <joe@deserted.net>
Diffstat (limited to 'meta-networking')
5 files changed, 15 insertions, 15 deletions
diff --git a/meta-networking/recipes-support/ntp/files/ntpd b/meta-networking/recipes-support/ntp/files/ntpd index f1e78aa6db..a62b8ce691 100755 --- a/meta-networking/recipes-support/ntp/files/ntpd +++ b/meta-networking/recipes-support/ntp/files/ntpd | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | PATH=/sbin:/bin:/usr/bin:/usr/sbin | 3 | PATH=/sbin:/bin:/usr/bin:/usr/sbin |
| 4 | 4 | ||
| 5 | # ntpd init.d script for ntpdc from ntp.isc.org | 5 | # ntpd init.d script for ntpdc from ntp.isc.org |
| 6 | test -x /usr/bin/ntpd -a -r /etc/ntp.conf || exit 0 | 6 | test -x /usr/sbin/ntpd -a -r /etc/ntp.conf || exit 0 |
| 7 | # rcS contains TICKADJ | 7 | # rcS contains TICKADJ |
| 8 | test -r /etc/default/rcS && . /etc/default/rcS | 8 | test -r /etc/default/rcS && . /etc/default/rcS |
| 9 | 9 | ||
| @@ -11,9 +11,9 @@ test -r /etc/default/rcS && . /etc/default/rcS | |||
| 11 | settick(){ | 11 | settick(){ |
| 12 | # If TICKADJ is set we *must* adjust it before we start, because the | 12 | # If TICKADJ is set we *must* adjust it before we start, because the |
| 13 | # driftfile relies on the correct setting | 13 | # driftfile relies on the correct setting |
| 14 | test -n "$TICKADJ" -a -x /usr/bin/tickadj && { | 14 | test -n "$TICKADJ" -a -x /usr/sbin/tickadj && { |
| 15 | echo -n "Setting tick to $TICKADJ: " | 15 | echo -n "Setting tick to $TICKADJ: " |
| 16 | /usr/bin/tickadj "$TICKADJ" | 16 | /usr/sbin/tickadj "$TICKADJ" |
| 17 | echo "done" | 17 | echo "done" |
| 18 | } | 18 | } |
| 19 | } | 19 | } |
| @@ -23,7 +23,7 @@ startdaemon(){ | |||
| 23 | # this. If ntpd seems to disappear after a while assume TICKADJ | 23 | # this. If ntpd seems to disappear after a while assume TICKADJ |
| 24 | # above is set to a totally incorrect value. | 24 | # above is set to a totally incorrect value. |
| 25 | echo -n "Starting ntpd: " | 25 | echo -n "Starting ntpd: " |
| 26 | start-stop-daemon --start -x /usr/bin/ntpd -- -u ntp:ntp -p /var/run/ntp.pid "$@" | 26 | start-stop-daemon --start -x /usr/sbin/ntpd -- -u ntp:ntp -p /var/run/ntp.pid "$@" |
| 27 | echo "done" | 27 | echo "done" |
| 28 | } | 28 | } |
| 29 | stopdaemon(){ | 29 | stopdaemon(){ |
diff --git a/meta-networking/recipes-support/ntp/files/ntpdate b/meta-networking/recipes-support/ntp/files/ntpdate index ab0551c5a5..17b64d1335 100755 --- a/meta-networking/recipes-support/ntp/files/ntpdate +++ b/meta-networking/recipes-support/ntp/files/ntpdate | |||
| @@ -1,8 +1,8 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | PATH=/sbin:/bin:/usr/bin | 3 | PATH=/sbin:/bin:/usr/bin:/usr/sbin |
| 4 | 4 | ||
| 5 | test -x /usr/bin/ntpdate || exit 0 | 5 | test -x /usr/sbin/ntpdate || exit 0 |
| 6 | 6 | ||
| 7 | if test -f /etc/default/ntpdate ; then | 7 | if test -f /etc/default/ntpdate ; then |
| 8 | . /etc/default/ntpdate | 8 | . /etc/default/ntpdate |
| @@ -40,7 +40,7 @@ if [ -x /usr/bin/lockfile-create ]; then | |||
| 40 | LOCKTOUCHPID="$!" | 40 | LOCKTOUCHPID="$!" |
| 41 | fi | 41 | fi |
| 42 | 42 | ||
| 43 | if /usr/bin/ntpdate -s $OPTS $NTPSERVERS 2>/dev/null; then | 43 | if /usr/sbin/ntpdate -s $OPTS $NTPSERVERS 2>/dev/null; then |
| 44 | if [ "$UPDATE_HWCLOCK" = "yes" ]; then | 44 | if [ "$UPDATE_HWCLOCK" = "yes" ]; then |
| 45 | hwclock --systohc || : | 45 | hwclock --systohc || : |
| 46 | fi | 46 | fi |
diff --git a/meta-networking/recipes-support/ntp/ntp.inc b/meta-networking/recipes-support/ntp/ntp.inc index 7876c0b79d..9c3e0d16c8 100644 --- a/meta-networking/recipes-support/ntp/ntp.inc +++ b/meta-networking/recipes-support/ntp/ntp.inc | |||
| @@ -29,7 +29,7 @@ inherit autotools update-rc.d useradd systemd | |||
| 29 | 29 | ||
| 30 | # The ac_cv_header_readline_history is to stop ntpdc depending on either | 30 | # The ac_cv_header_readline_history is to stop ntpdc depending on either |
| 31 | # readline or curses | 31 | # readline or curses |
| 32 | EXTRA_OECONF += "--with-net-snmp-config=no --without-ntpsnmpd ac_cv_header_readline_history_h=no" | 32 | EXTRA_OECONF += "--with-net-snmp-config=no --without-ntpsnmpd ac_cv_header_readline_history_h=no --with-binsubdir=sbin" |
| 33 | CFLAGS_append = " -DPTYS_ARE_GETPT -DPTYS_ARE_SEARCHED" | 33 | CFLAGS_append = " -DPTYS_ARE_GETPT -DPTYS_ARE_SEARCHED" |
| 34 | 34 | ||
| 35 | USERADD_PACKAGES = "${PN}" | 35 | USERADD_PACKAGES = "${PN}" |
| @@ -101,18 +101,18 @@ RCONFLICTS_ntpdate += "ntpdate-systemd" | |||
| 101 | 101 | ||
| 102 | RSUGGESTS_${PN} = "iana-etc" | 102 | RSUGGESTS_${PN} = "iana-etc" |
| 103 | 103 | ||
| 104 | FILES_${PN} = "${bindir}/ntpd ${sysconfdir}/ntp.conf ${sysconfdir}/init.d/ntpd ${sbindir} ${libdir} \ | 104 | FILES_${PN} = "${sbindir}/ntpd ${sysconfdir}/ntp.conf ${sysconfdir}/init.d/ntpd ${libdir} \ |
| 105 | ${systemd_unitdir}/ntp-units.d/60-ntpd.list \ | 105 | ${systemd_unitdir}/ntp-units.d/60-ntpd.list \ |
| 106 | " | 106 | " |
| 107 | FILES_${PN}-tickadj = "${bindir}/tickadj" | 107 | FILES_${PN}-tickadj = "${sbindir}/tickadj" |
| 108 | FILES_${PN}-utils = "${bindir}" | 108 | FILES_${PN}-utils = "${sbindir}" |
| 109 | FILES_ntpdate = "${bindir}/ntpdate \ | 109 | FILES_ntpdate = "${sbindir}/ntpdate \ |
| 110 | ${sysconfdir}/network/if-up.d/ntpdate-sync \ | 110 | ${sysconfdir}/network/if-up.d/ntpdate-sync \ |
| 111 | ${bindir}/ntpdate-sync \ | 111 | ${bindir}/ntpdate-sync \ |
| 112 | ${sysconfdir}/default/ntpdate \ | 112 | ${sysconfdir}/default/ntpdate \ |
| 113 | ${systemd_unitdir}/system/ntpdate.service \ | 113 | ${systemd_unitdir}/system/ntpdate.service \ |
| 114 | " | 114 | " |
| 115 | FILES_sntp = "${bindir}/sntp \ | 115 | FILES_sntp = "${sbindir}/sntp \ |
| 116 | ${sysconfdir}/default/sntp \ | 116 | ${sysconfdir}/default/sntp \ |
| 117 | " | 117 | " |
| 118 | 118 | ||
diff --git a/meta-networking/recipes-support/ntp/ntp/ntpd.service b/meta-networking/recipes-support/ntp/ntp/ntpd.service index eb9c0308c1..b7c4268646 100644 --- a/meta-networking/recipes-support/ntp/ntp/ntpd.service +++ b/meta-networking/recipes-support/ntp/ntp/ntpd.service | |||
| @@ -5,7 +5,7 @@ After=network.target | |||
| 5 | [Service] | 5 | [Service] |
| 6 | Type=forking | 6 | Type=forking |
| 7 | PIDFile=/run/ntpd.pid | 7 | PIDFile=/run/ntpd.pid |
| 8 | ExecStart=/usr/bin/ntpd -p /run/ntpd.pid -g | 8 | ExecStart=/usr/sbin/ntpd -p /run/ntpd.pid -g |
| 9 | 9 | ||
| 10 | [Install] | 10 | [Install] |
| 11 | WantedBy=multi-user.target | 11 | WantedBy=multi-user.target |
diff --git a/meta-networking/recipes-support/ntp/ntp/sntp.service b/meta-networking/recipes-support/ntp/ntp/sntp.service index 0f09e43474..4898b8a709 100644 --- a/meta-networking/recipes-support/ntp/ntp/sntp.service +++ b/meta-networking/recipes-support/ntp/ntp/sntp.service | |||
| @@ -5,7 +5,7 @@ After=network.target | |||
| 5 | [Service] | 5 | [Service] |
| 6 | Type=oneshot | 6 | Type=oneshot |
| 7 | EnvironmentFile=-/etc/default/sntp | 7 | EnvironmentFile=-/etc/default/sntp |
| 8 | ExecStart=/usr/bin/sntp -s $NTPSERVER | 8 | ExecStart=/usr/sbin/sntp -s $NTPSERVER |
| 9 | 9 | ||
| 10 | [Install] | 10 | [Install] |
| 11 | WantedBy=multi-user.target | 11 | WantedBy=multi-user.target |
