delete bin/neutron-ofagent-agent

Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Reviewed-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
This commit is contained in:
FUJITA Tomonori 2014-04-21 08:56:42 +09:00
parent 78d0b08048
commit 28f6f6020a
3 changed files with 1 additions and 23 deletions

View File

@ -1,19 +0,0 @@
#!/usr/bin/env python
# Copyright (C) 2011, 2012 Nippon Telegraph and Telephone Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from ryu.cmd.ofa_neutron_agent import main
main()

View File

@ -215,9 +215,6 @@ latex_documents = [
man_pages = [
('index', 'ryu', u'ryu Documentation',
[u'ryu development team'], 1),
('man/neutron_ofagent_agent', 'neutron-ofagent-agent',
u'neutron ofagent agent',
[u'ryu development team'], 1),
('man/ryu', 'ryu', u'ryu',
[u'ryu development team'], 1),
('man/ryu_manager', 'ryu-manager', u'ryu manager',

View File

@ -90,7 +90,7 @@ run_tests() {
run_pylint() {
echo "Running pylint ..."
PYLINT_OPTIONS="--rcfile=.pylintrc --output-format=parseable"
PYLINT_INCLUDE="ryu bin/ryu bin/ryu-manager bin/neutron-ofagent-agent ryu/tests/bin/ryu-client"
PYLINT_INCLUDE="ryu bin/ryu bin/ryu-manager ryu/tests/bin/ryu-client"
export PYTHONPATH=$PYTHONPATH:.ryu
PYLINT_LOG=pylint.log