summaryrefslogtreecommitdiff
path: root/templates/system/package
diff options
context:
space:
mode:
authorrbalocca <rbalocca@vyatta.com>2008-03-07 17:28:41 -0800
committerrbalocca <rbalocca@vyatta.com>2008-03-07 17:28:41 -0800
commit38063621a29910b631561ecce6e5b524b09233e4 (patch)
tree0322203dc9ef3ab61cdddd2ec3c9648021e60e78 /templates/system/package
parent5fe4e9633b235cbc757e4d2340112f7ff5e41ce1 (diff)
downloadvyatta-cfg-system-38063621a29910b631561ecce6e5b524b09233e4.tar.gz
vyatta-cfg-system-38063621a29910b631561ecce6e5b524b09233e4.zip
Improve the package repository template
Diffstat (limited to 'templates/system/package')
-rw-r--r--templates/system/package/repository/node.def17
1 files changed, 11 insertions, 6 deletions
diff --git a/templates/system/package/repository/node.def b/templates/system/package/repository/node.def
index e07967ee..d2e4cf38 100644
--- a/templates/system/package/repository/node.def
+++ b/templates/system/package/repository/node.def
@@ -1,11 +1,16 @@
tag:
+
type: txt
-help: Name describing the repository
+
+help: Name a debian archive
+
commit:expression: $VAR(./url/) != ""; "Must configure the repository URL"
commit:expression: $VAR(./distribution/) != ""; "Must configure the repository distribution"
-commit:expression: $VAR(./components/) != ""; "Must configure the repository component"
-update:expression: "sudo sh -c \"touch /etc/apt/sources.list && \
+commit:expression: $VAR(./components/) != ""; "Must configure the repository components"
+
+update: sudo sh -c "touch /etc/apt/sources.list && \
sed -i '\\!# $VAR(@) #!d' /etc/apt/sources.list && \
-echo \\\"deb $VAR(url/@)/ $VAR(distribution/@) $VAR(components/@) # $VAR(@) #\\\" >> /etc/apt/sources.list\" "
-delete:expression: "sudo sh -c \"touch /etc/apt/sources.list && \
-sed -i '\\!# $VAR(@) #!d' /etc/apt/sources.list\" "
+echo \"deb $VAR(url/@)/ $VAR(distribution/@) $VAR(components/@) # $VAR(@) #\" >> /etc/apt/sources.list"
+
+delete: sudo sh -c "touch /etc/apt/sources.list && \
+sed -i '\\!# $VAR(@) #!d' /etc/apt/sources.list"