diff options
| author | Scott Moser <smoser@ubuntu.com> | 2016-03-04 00:10:36 -0500 | 
|---|---|---|
| committer | Scott Moser <smoser@ubuntu.com> | 2016-03-04 00:10:36 -0500 | 
| commit | a782829a083c7170df62dda94d6b7441963dcb94 (patch) | |
| tree | ff5cfe752617a508541395e16fbb20802f580729 | |
| parent | 964aeaa9c1eac3fafa73ef9abf344613a093cb06 (diff) | |
| download | vyos-cloud-init-a782829a083c7170df62dda94d6b7441963dcb94.tar.gz vyos-cloud-init-a782829a083c7170df62dda94d6b7441963dcb94.zip | |
remove debug set -x
| -rw-r--r-- | packages/debian/cloud-init.postinst | 1 | ||||
| -rw-r--r-- | packages/debian/cloud-init.preinst | 2 | 
2 files changed, 0 insertions, 3 deletions
| diff --git a/packages/debian/cloud-init.postinst b/packages/debian/cloud-init.postinst index f1222b42..cdd0466d 100644 --- a/packages/debian/cloud-init.postinst +++ b/packages/debian/cloud-init.postinst @@ -1,5 +1,4 @@  #!/bin/sh -set -x  cleanup_lp1552999() {      local oldver="$1" last_bad_ver="0.7.7~bzr1178"      dpkg --compare-versions "$oldver" le "$last_bad_ver" || return 0 diff --git a/packages/debian/cloud-init.preinst b/packages/debian/cloud-init.preinst index babaab6c..3c2af06d 100644 --- a/packages/debian/cloud-init.preinst +++ b/packages/debian/cloud-init.preinst @@ -1,7 +1,6 @@  #!/bin/sh  # vi: ts=4 expandtab -set -x  cleanup_lp1552999() {      local oldver="$1" last_bad_ver="0.7.7~bzr1178"      dpkg --compare-versions "$oldver" le "$last_bad_ver" || return 0 @@ -17,6 +16,5 @@ if [ "$1" = "upgrade" ]; then     oldver="$2"     cleanup_lp1552999 "$oldver"  fi -set +x  #DEBHELPER# | 
