summarylogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-07-12networkmanager-dispatcher-pdnsd 2.1-1Frederik “Freso” S. Olesen
Bring networkmanager-dispatcher-pdnsd up to speed with changes from networkmanager-dispatcher-chrony package.
2015-07-12networkmanager-dispatcher-chrony 2.1-1.Frederik “Freso” S. Olesen
2015-07-12Merge updates from networkmanager-dispatcher-ntpd.Frederik “Freso” S. Olesen
2015-07-12upgpkg: networkmanager-dispatcher-ntpd 1.0-6jelle
fix license issues git-svn-id: file:///srv/repos/svn-community/svn@96576 9fca08f4-af9d-4005-b8df-a31f2cc04f65
2015-07-12upgpkg: networkmanager-dispatcher-ntpd 1.0-5jelle
fix #32049 git-svn-id: file:///srv/repos/svn-community/svn@81224 9fca08f4-af9d-4005-b8df-a31f2cc04f65
2015-07-12Revert r78782: Full pkgdesc cleanup for 2339 packagesfoutrelis
git-svn-id: file:///srv/repos/svn-community/svn@78820 9fca08f4-af9d-4005-b8df-a31f2cc04f65
2015-07-12Full pkgdesc cleanup for 2339 packagesarodseth
git-svn-id: file:///srv/repos/svn-community/svn@78782 9fca08f4-af9d-4005-b8df-a31f2cc04f65
2015-07-12upgpkg: networkmanager-dispatcher-ntpd 1.0-4jelle
fix bug #30220, systemd ntp fix git-svn-id: file:///srv/repos/svn-community/svn@75862 9fca08f4-af9d-4005-b8df-a31f2cc04f65
2015-07-12upgpkg: networkmanager-dispatcher-ntpd 1.0-3jelle
add support for systemd git-svn-id: file:///srv/repos/svn-community/svn@73112 9fca08f4-af9d-4005-b8df-a31f2cc04f65
2015-07-12upgpkg: networkmanager-dispatcher-ntpd 1.0-2jelle
rebuild for signing git-svn-id: file:///srv/repos/svn-community/svn@64945 9fca08f4-af9d-4005-b8df-a31f2cc04f65
2015-07-12Turning off the executable bit for all PKGBUILD filesarodseth
git-svn-id: file:///srv/repos/svn-community/svn@60201 9fca08f4-af9d-4005-b8df-a31f2cc04f65
2015-07-12networkmanager-dispatcher-chrony: Version 2.0-1!Frederik "Freso" S. Olesen
2015-07-12networkmanager-dispatcher-chrony: Change up quotations.Frederik "Freso" S. Olesen
2015-07-12networkmanager-dispatcher-chrony: Update $sha256sums.Frederik "Freso" S. Olesen
2015-07-12networkmanager-dispatcher-chrony: Cleaning up the script a bit.Frederik "Freso" S. Olesen
2015-07-12networkmanager-dispatcher-chrony: Fix "==" bashism.Frederik "Freso" S. Olesen
https://wiki.ubuntu.com/DashAsBinSh#A.5B `checkbashisms` output: > possible bashism in 10-chrony line 17 (should be 'b = a'): > [ "$(nmcli -t --fields STATE g)" == "connected" ]; Closes #8.
2015-07-12networkmanager-dispatcher-chrony: Make 10-chrony executable.Frederik "Freso" S. Olesen
2015-07-12Merge remote-tracking branch 'bitbucket-cgtx/master' into ↵Frederik "Freso" S. Olesen
networkmanager-dispatcher-chrony-update Conflicts: networkmanager-dispatcher-chrony/10-chrony
2015-07-12use a repeatable function to get connected statuscgtx
2015-07-12Use automatic authentication for chronycAdam Mendlik
This feature was introduced in chrony 1.28 and eliminates the need to parse the configuration file or the keys file. http://chrony.tuxfamily.org/manual.html#Chronyc-command-line-options
2015-07-12use chronyc automatic authentication flagcgtx
2015-07-12networkmanager-dispatcher-chrony: Version 1.1-1.Frederik "Freso" S. Olesen
2015-07-12networkmanager-dispatcher-chrony: Update $url.Frederik "Freso" S. Olesen
2015-07-12networkmanager-dispatcher-chrony: Ensure we always get English strings.Frederik "Freso" S. Olesen
Localised environments might have the `nmcli` response be translated, breaking the string comparison.
2015-07-12networkmanager-dispatcher-chrony: Use nmcli instead of nm-tool.Troy Engel
> The NetworkManager 0.9.10.0-2 that is in the repository no longer > ships the 'nm-tool' utility, so this script is also broken in that > area. It can be replaced by "nmcli -t --fields STATE g" easily: > > STATECMD="nmcli -t --fields STATE g" > [...] > if [ ! `${STATECMD}` = 'connected' ]; then > [...] > > This fix plus the PASSWORD one now results in a fully working > dispatcher with the latest NM release.
2015-07-12networkmanager-dispatcher-chrony: Fix $PASSWORD.Troy Engel
> This script doesn't work with the default configuration of chrony.conf > and chrony.keys; they set the keyword 'generatecommandkey' which > writes the key in MD5 format (other Googling shows SHA is also > possible): > > 1 MD5 HEX:AABBCCDDEEFF > > This is documented here: > > http://chrony.tuxfamily.org/manual.html#commandkey-directive > > The issue is the sed line for PASSWORD doesn't strip out the method, > so tries to pass "MD5 HEX:..." over to chronyc. Here's a sed that > works for both what's in the wiki ('1 xyzzy') and the autogenerated > keys ('1 MD5 HEX:...'): > > -PASSWORD=`grep ^$COMMANDKEY $KEYFILE | sed 's/[^ ]* //' -` > +PASSWORD=`grep ^$COMMANDKEY $KEYFILE | sed 's/.*[^ ] //' -` > > That will extract the other direction - find the last space and grab > what follows it, rather than finding the first space etc. It also > looks like we could just avoid this altogether and use "chronyc -a" to > automatically do the needful.
2015-07-12networkmanager-dispatcher-chrony: Fixed/updated URL.Frederik "Freso" S. Olesen
2015-07-12networkmanager-dispatcher-chrony: Backup dispatcher script.Frederik "Freso" S. Olesen
2015-07-12networkmanager-dispatcher-chrony: Added ChangeLog.Frederik "Freso" S. Olesen
2015-07-12networkmanager-dispatcher-chrony: Replace MD5 sum with SHA256 and update it ↵Frederik "Freso" S. Olesen
for current 10-chrony.
2015-07-12networkmanager-dispatcher-chrony: Add in my chrony script.Frederik "Freso" S. Olesen
2015-07-12networkmanager-dispatcher-chrony: Use sh instead of bash for the script.Frederik "Freso" S. Olesen
2015-07-12networkmanager-dispatcher-chrony: Changed maintainer line.Frederik "Freso" S. Olesen
2015-07-12networkmanager-dispatcher-chrony: Replace "ntpd" with "chrony".Frederik "Freso" S. Olesen
2015-07-12networkmanager-dispatcher-chrony: Rename "10-ntpd".Frederik "Freso" S. Olesen
2015-07-12upgpkg: networkmanager-dispatcher-ntpd 1.0-1jelle
added the ntpd dispatcher for networkmanager git-svn-id: file:///srv/repos/svn-community/svn@37096 9fca08f4-af9d-4005-b8df-a31f2cc04f65
2015-07-12networkmanager-dispatcher-ntpd addedjelle
git-svn-id: file:///srv/repos/svn-community/svn@37091 9fca08f4-af9d-4005-b8df-a31f2cc04f65 (Amended 2015-07-12 by @Freso for AUR 4 edibility.)
2012-09-27networkmanager-dispatcher-pdnsd: Version 2.0-1.Frederik "Freso" S. Olesen
2012-09-27networkmanager-dispatcher-pdnsd: Improve/harden test/[ calls a bit.Frederik "Freso" S. Olesen
See also: - http://mywiki.wooledge.org/BashPitfalls#A.5B_.24foo_.3D_.22bar.22_.5D
2012-09-27networkmanager-dispatcher-pdnsd: Abstracted init system calls to ↵Frederik "Freso" S. Olesen
pdnsd_init_command().
2012-09-27networkmanager-dispatcher-pdnsd: Fixed pdnsd_is_running().Frederik "Freso" S. Olesen
2012-09-27networkmanager-dispatcher-pdnsd: Fix function name typo.Frederik "Freso" S. Olesen
2012-09-27networkmanager-dispatcher-pdnsd: Abstracted check for whether pDNSd is running.Frederik "Freso" S. Olesen
2012-09-27networkmanager-dispatcher-pdnsd: Fixed typo.Frederik "Freso" S. Olesen
2012-09-27networkmanager-dispatcher-pdnsd: Added support for both systemd and sysvinit.Frederik "Freso" S. Olesen
2012-09-11networkmanager-dispatcher-pdnsd: Made 00-pdnsd executable.Frederik "Freso" S. Olesen
2012-09-11networkmanager-dispatcher-pdnsd: Made PKGBUILD non-executable...Frederik "Freso" S. Olesen
2012-03-10networkmanager-dispatcher-pdnsd: 1.1-1 release.Frederik "Freso" S. Olesen
2012-03-10networkmanager-dispatcher-pdnsd: Consistently use single quotes in PKGBUILD.Frederik "Freso" S. Olesen
2012-03-10networkmanager-dispatcher-pdnsd: Add release day of 1.0-1 to ChangeLog.Frederik "Freso" S. Olesen