mirror of
https://github.com/OpenNebula/one.git
synced 2025-01-06 13:17:42 +03:00
74 lines
2.5 KiB
Python
74 lines
2.5 KiB
Python
# SConstruct for share/man
|
|
|
|
# -------------------------------------------------------------------------- #
|
|
# Copyright 2002-2016, OpenNebula Project, OpenNebula Systems #
|
|
# #
|
|
# 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. #
|
|
#--------------------------------------------------------------------------- #
|
|
|
|
Import('env')
|
|
|
|
gzip_bld = Builder(action = 'gzip -c $SOURCE > $TARGET',
|
|
suffix = '.1.gz',
|
|
src_suffix = '.1')
|
|
|
|
env.Append(BUILDERS = {'Man' : gzip_bld})
|
|
|
|
env.Man('econe-allocate-address')
|
|
env.Man('econe-associate-address')
|
|
env.Man('econe-attach-volume')
|
|
env.Man('econe-create-keypair')
|
|
env.Man('econe-create-volume')
|
|
env.Man('econe-delete-keypair')
|
|
env.Man('econe-delete-volume')
|
|
env.Man('econe-describe-addresses')
|
|
env.Man('econe-describe-images')
|
|
env.Man('econe-describe-instances')
|
|
env.Man('econe-describe-keypairs')
|
|
env.Man('econe-describe-volumes')
|
|
env.Man('econe-detach-volume')
|
|
env.Man('econe-disassociate-address')
|
|
env.Man('econe-reboot-instances')
|
|
env.Man('econe-register')
|
|
env.Man('econe-release-address')
|
|
env.Man('econe-run-instances')
|
|
env.Man('econe-start-instances')
|
|
env.Man('econe-stop-instances')
|
|
env.Man('econe-terminate-instances')
|
|
env.Man('econe-upload')
|
|
|
|
env.Man('oneacct')
|
|
env.Man('oneshowback')
|
|
env.Man('oneacl')
|
|
env.Man('onecluster')
|
|
env.Man('onedatastore')
|
|
env.Man('onedb')
|
|
env.Man('onehost')
|
|
env.Man('oneimage')
|
|
env.Man('onetemplate')
|
|
env.Man('oneuser')
|
|
env.Man('onevm')
|
|
env.Man('onevnet')
|
|
env.Man('onegroup')
|
|
env.Man('onezone')
|
|
env.Man('onevcenter')
|
|
env.Man('onesecgroup')
|
|
env.Man('onevdc')
|
|
env.Man('onevrouter')
|
|
env.Man('onemarket')
|
|
env.Man('onemarketapp')
|
|
|
|
env.Man('oneflow')
|
|
env.Man('oneflow-template')
|
|
|