TT#71950 Fix typos

Change-Id: Ia42bc5d06992097ab077bc908837b3f04516ce62
changes/40/37240/1
Guillem Jover 7 years ago
parent a160cb097b
commit 18edbf9718

6
debian/changelog vendored

@ -2,7 +2,7 @@ ngcp-ngcpcfg (8.3.0.0+0~mr8.3.0.0) unstable; urgency=medium
[ Guillem Jover ]
* [d09d18d] TT#50701 NGCP::Template::Object: Use exists instead of defined
* [de9aaca] TT#50701 NGCP::Tempalte::Object: Handle empty peername for self in firstname
* [de9aaca] TT#50701 NGCP::Template::Object: Handle empty peername for self in firstname
* [5bcd29f] TT#50701 test: Add unit tests for NGCP::Template::Object
* [c0fd959] TT#50701 Refactor IPv6 address expansion into an object function
* [e1749f7] TT#71952 Fix permissions of yaml files
@ -684,7 +684,7 @@ ngcp-ngcpcfg (0.29.0.0+0~mr4.3.0.0) unstable; urgency=medium
* [c89f72e] MT#15141 Hide debug output to keep old ngcpcfg output style
* [e8f7ce8] MT#15803 Add ngcpcfg log/show scripts to improve usability
* [cad0d3c] MT#15803 Introducing the new function to provide current branch status
* [550067a] MT#15803 Check oustanding pull actions only (ignore outstanding push actions)
* [550067a] MT#15803 Check outsanding pull actions only (ignore outstanding push actions)
* [50b08a3] MT#11097 Fix warning 'keys on reference is experimental' in ngcp-network
[ Guillem Jover ]
@ -1156,7 +1156,7 @@ ngcp-ngcpcfg (0.10.0) unstable; urgency=low
* Make sure customtt.tt2 template files are preferred over
non-customtt.tt2 files in non-HA setups.
* encrypt/decrypt: get rid of ngcpcfg-share on glusterfs and
local cache on encrypt and try to restore it iff possible or otherwis
local cache on encrypt and try to restore it iff possible or otherwise
* Fix unset variable if calling ngcpcfg without any options
and having ngcpcfg-locker installed.
* Usage text: correctly indent optional features.

@ -175,7 +175,7 @@ FOREACH X_f IN argv.admin_export_fields;
out.admin_fields.push("'" _ cdr_direction_provider_type_select(X_base_type _ "_relation", X_type _ "_relation_data", "base_table", "relation_id", "val", matches.0, matches.1, matches.2) _ "'");
ELSIF (matches = X_f.match('^(?i:header)_([a-zA-Z0-9_-]+)$'));
out.admin_fields.push("'" _ cdr_direction_provider_type_select_casesensitive(X_base_type _ "_tag", X_type _ "_tag_data", "base_table", "tag_id", "val", "source", "customer", "header=" _ matches.0) _ "'");
# Lowest precendece: other cdr fields, fields joined on your own or 'calculated' (raw sql) fields...:
# Lowest precedence: other cdr fields, fields joined on your own or 'calculated' (raw sql) fields...:
ELSE;
out.admin_fields.push("'" _ X_f _ "'");
END;

@ -258,7 +258,7 @@ sub sync_mysql_data {
sub flush_privs {
return if $test_mode;
log_debug("flush priveleges");
log_debug("flush privileges");
$dbh->do('FLUSH PRIVILEGES')
or die "Cannot flush MySQL privileges: $DBI::errstr\n";

@ -67,7 +67,7 @@ fi
# commit message
if [ -z "${1:-}" ] ; then
msg="commiting uncommented changes"
msg="committing uncommented changes"
else
msg="$*"
fi

@ -51,7 +51,7 @@ FILES=$(get_config_file_list)
# shellcheck disable=SC2086
tar zcf "$TARGZ" /etc/ngcp-config/ $FILES /etc/.git
if gpg --symmetric "$TARGZ" ; then
log_info "Successfully created crypted ngcpcfg configuration archive ${TARGZ}.gpg"
log_info "Successfully created encrypted ngcpcfg configuration archive ${TARGZ}.gpg"
# ensure we don't leave the unencrypted version behind
rm -f "${TARGZ}"
else

@ -109,7 +109,7 @@ systemd_daemon_reload_preset() {
log_debug "Running: systemctl daemon-reload 2>&1 || true"
systemctl daemon-reload 2>&1 || true
log_debug "systemd needs preset-all to enable/disabe services (to start them on boot)"
log_debug "systemd needs preset-all to enable/disable services (to start them on boot)"
log_debug "Running: rm -rf /etc/systemd/system/*.wants/ || true"
rm -rf /etc/systemd/system/*.wants/ || true
log_debug "Running: systemctl preset-all 2>&1 || true"

Loading…
Cancel
Save