TT#27502 Normalize program names by switching from _ to -

Names with underscores are more difficult to type. Use the prevalent
style of dashes as separators.

Add backwards compatibility symlinks to avoid breakage.

Change-Id: If6afcb1df4908ff6888afa3d9b2082eee4d3ed7d
changes/03/17603/1
Guillem Jover 7 years ago
parent a6375b0bd7
commit b6dda76c65

@ -63,11 +63,11 @@ __END__
=head1 NAME
ngcp-api_ping - check NGCP API status
ngcp-api-ping - check NGCP API status
=head1 SYNOPSIS
B<ngcp-api_ping> [I<options>]
B<ngcp-api-ping> [I<options>]
=head1 DESCRIPTION

@ -65,11 +65,11 @@ __END__
=head1 NAME
ngcp-create_customer - create a customer
ngcp-create-customer - create a customer
=head1 SYNOPSIS
B<ngcp-create_customer> [I<options>...] I<required-arguments>...
B<ngcp-create-customer> [I<options>...] I<required-arguments>...
=head1 DESCRIPTION

@ -72,11 +72,11 @@ __END__
=head1 NAME
ngcp-create_domain - create an NGCP domain
ngcp-create-domain - create an NGCP domain
=head1 SYNOPSIS
B<ngcp-create_domain> [I<options>...] I<required-arguments>...
B<ngcp-create-domain> [I<options>...] I<required-arguments>...
=head1 DESCRIPTION

@ -87,11 +87,11 @@ __END__
=head1 NAME
ngcp-create_subscriber - create a subscriber
ngcp-create-subscriber - create a subscriber
=head1 SYNOPSIS
B<ngcp-create_subscriber> [I<options>...] I<required-arguments>...
B<ngcp-create-subscriber> [I<options>...] I<required-arguments>...
=head1 DESCRIPTION

@ -83,11 +83,11 @@ __END__
=head1 NAME
ngcp-delete_domain - delete an NGCP domain
ngcp-delete-domain - delete an NGCP domain
=head1 SYNOPSIS
B<ngcp-delete_domain> [I<options>...] I<required-arguments>...
B<ngcp-delete-domain> [I<options>...] I<required-arguments>...
=head1 DESCRIPTION

@ -60,11 +60,11 @@ __END__
=head1 NAME
ngcp-get_customer - retreives an NGCP Customer
ngcp-get-customer - retreives an NGCP Customer
=head1 SYNOPSIS
B<ngcp-get_customer> [I<options>...] I<required-arguments>...
B<ngcp-get-customer> [I<options>...] I<required-arguments>...
=head1 DESCRIPTION

@ -60,11 +60,11 @@ __END__
=head1 NAME
ngcp-sound_set - retreives an NGCP Sound Set
ngcp-sound-set - retreives an NGCP Sound Set
=head1 SYNOPSIS
B<ngcp-sound_set> [I<options>...] I<required-arguments>...
B<ngcp-sound-set> [I<options>...] I<required-arguments>...
=head1 DESCRIPTION

@ -61,11 +61,11 @@ __END__
=head1 NAME
ngcp-terminate_customer - terminate an NGCP Customer
ngcp-terminate-customer - terminate an NGCP Customer
=head1 SYNOPSIS
B<ngcp-terminate_customer> [I<options>...] I<required-arguments>...
B<ngcp-terminate-customer> [I<options>...] I<required-arguments>...
=head1 DESCRIPTION

@ -81,11 +81,11 @@ __END__
=head1 NAME
ngcp-terminate_subscriber - terminate an NGCP Subscriber
ngcp-terminate-subscriber - terminate an NGCP Subscriber
=head1 SYNOPSIS
B<ngcp-terminate_subscriber> [I<options>...] I<required-arguments>...
B<ngcp-terminate-subscriber> [I<options>...] I<required-arguments>...
=head1 DESCRIPTION

@ -1,8 +1,8 @@
bin/ngcp-api_ping usr/bin/
bin/ngcp-create_customer usr/bin/
bin/ngcp-create_domain usr/bin/
bin/ngcp-create_subscriber usr/bin/
bin/ngcp-delete_domain usr/bin/
bin/ngcp-get_customer usr/bin/
bin/ngcp-terminate_customer usr/bin/
bin/ngcp-terminate_subscriber usr/bin/
bin/ngcp-api-ping usr/bin/
bin/ngcp-create-customer usr/bin/
bin/ngcp-create-domain usr/bin/
bin/ngcp-create-subscriber usr/bin/
bin/ngcp-delete-domain usr/bin/
bin/ngcp-get-customer usr/bin/
bin/ngcp-terminate-customer usr/bin/
bin/ngcp-terminate-subscriber usr/bin/

@ -1,3 +1,16 @@
/usr/bin/ngcp-get_customer /usr/bin/ngcp-get_voip_account
/usr/bin/ngcp-terminate_customer /usr/bin/ngcp-delete_voip_account
/usr/bin/ngcp-terminate_subscriber /usr/bin/ngcp-delete_subscriber
/usr/bin/ngcp-get-customer /usr/bin/ngcp-get-voip-account
/usr/bin/ngcp-terminate-customer /usr/bin/ngcp-delete-voip-account
/usr/bin/ngcp-terminate-subscriber /usr/bin/ngcp-delete-subscriber
# Backwards compatibility symlinks.
/usr/bin/ngcp-api-ping /usr/bin/ngcp-api_ping
/usr/bin/ngcp-create-customer /usr/bin/ngcp-create_customer
/usr/bin/ngcp-create-domain /usr/bin/ngcp-create_domain
/usr/bin/ngcp-create-subscriber /usr/bin/ngcp-create_subscriber
/usr/bin/ngcp-delete-domain /usr/bin/ngcp-delete_domain
/usr/bin/ngcp-get-customer /usr/bin/ngcp-get_customer
/usr/bin/ngcp-get-customer /usr/bin/ngcp-get_voip_account
/usr/bin/ngcp-terminate-customer /usr/bin/ngcp-delete_voip_account
/usr/bin/ngcp-terminate-customer /usr/bin/ngcp-terminate_customer
/usr/bin/ngcp-terminate-subscriber /usr/bin/ngcp-delete_subscriber
/usr/bin/ngcp-terminate-subscriber /usr/bin/ngcp-terminate_subscriber

Loading…
Cancel
Save