summaryrefslogtreecommitdiff
path: root/templates/system/package/auto-sync
diff options
context:
space:
mode:
authorBob Gilligan <gilligan@vyatta.com>2009-07-30 13:53:48 -0700
committerBob Gilligan <gilligan@vyatta.com>2009-07-30 14:08:21 -0700
commitd89b40e09c5753fabd5e642477c311b82ba82790 (patch)
tree01c4550026dbc528ad5cb355508a338b9d74b0b0 /templates/system/package/auto-sync
parent4933b638324177d0e5254f13c00e9df1ccbe0c21 (diff)
downloadvyatta-cfg-system-d89b40e09c5753fabd5e642477c311b82ba82790.tar.gz
vyatta-cfg-system-d89b40e09c5753fabd5e642477c311b82ba82790.zip
Bugfix 4700: Move processing to "end" field so that param modifications are handled.
In order to correctly handle cases where parameters are changed after a repository configuration has been set up, we need to do the work in an "end" field instead of a "create" field. The "create" field is only executed when the node itself is created, not when nodes below it are modified. (cherry picked from commit e500a9e4494649e0ecb523d36b28452f2e9dd326)
Diffstat (limited to 'templates/system/package/auto-sync')
-rw-r--r--templates/system/package/auto-sync/node.def12
1 files changed, 9 insertions, 3 deletions
diff --git a/templates/system/package/auto-sync/node.def b/templates/system/package/auto-sync/node.def
index 3d14ab04..299b43bf 100644
--- a/templates/system/package/auto-sync/node.def
+++ b/templates/system/package/auto-sync/node.def
@@ -1,12 +1,18 @@
# this will set APT::Periodic::Update-Package-Lists in /etc/apt/apt.conf
# apt.conf is in turn read by the apt cron file loacted in /etc/cron.daily/apt
# the /etc/crontab file must have the daily line for daily to be run
+
type: u32
+
default: 1
+
help: Set to update the the repository cache every n days (0 disables auto-update)
+
syntax:expression: $VAR(@) >= 0 && $VAR(@) < 32 ; "auto-sync must be between 0 and 32 days"
+
update:expression: "sudo sh -c \"touch /etc/apt/apt.conf && \
-sed -i '/APT::Periodic::Update-Package-Lists*/d' /etc/apt/apt.conf && \
-echo \\\"APT::Periodic::Update-Package-Lists \\\"$VAR(@)\\\";\\\" >> /etc/apt/apt.conf\" "
+ sed -i '/APT::Periodic::Update-Package-Lists*/d' /etc/apt/apt.conf && \
+ echo \\\"APT::Periodic::Update-Package-Lists \\\"$VAR(@)\\\";\\\" >> /etc/apt/apt.conf\" "
+
delete:expression: "sudo sh -c \"touch /etc/apt/apt.conf && \
-sed -i '/APT::Periodic::Update-Package-Lists*/d' /etc/apt/apt.conf\" "
+ sed -i '/APT::Periodic::Update-Package-Lists*/d' /etc/apt/apt.conf\" "