From e263c82e48a431e502bd6baceb6dfcfdc1750cbb Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Fri, 5 Dec 2014 14:25:28 -0500 Subject: [PATCH] add shebang lines to all lib files With gerrit 2.8, and the new change screen, this will trigger syntax highlighting in gerrit. Thus making reviewing code a lot nicer. Change-Id: Id238748417ffab53e02d59413dba66f61e724383 --- functions | 2 ++ functions-common | 2 ++ lib/apache | 2 ++ lib/ceilometer | 2 ++ lib/ceph | 2 ++ lib/cinder | 2 ++ lib/cinder_backends/ceph | 2 ++ lib/cinder_backends/glusterfs | 2 ++ lib/cinder_backends/lvm | 2 ++ lib/cinder_backends/netapp_iscsi | 2 ++ lib/cinder_backends/netapp_nfs | 2 ++ lib/cinder_backends/nfs | 2 ++ lib/cinder_backends/solidfire | 2 ++ lib/cinder_backends/vmdk | 2 ++ lib/cinder_backends/xiv | 3 ++- lib/cinder_plugins/XenAPINFS | 2 ++ lib/cinder_plugins/glusterfs | 2 ++ lib/cinder_plugins/nfs | 2 ++ lib/cinder_plugins/sheepdog | 2 ++ lib/cinder_plugins/vsphere | 2 ++ lib/config | 2 ++ lib/database | 2 ++ lib/databases/mysql | 2 ++ lib/databases/postgresql | 2 ++ lib/dib | 2 ++ lib/dstat | 2 ++ lib/gantt | 2 ++ lib/glance | 2 ++ lib/heat | 2 ++ lib/horizon | 2 ++ lib/infra | 2 ++ lib/ironic | 2 ++ lib/keystone | 2 ++ lib/ldap | 2 ++ lib/neutron | 2 ++ lib/neutron_plugins/bigswitch_floodlight | 2 ++ lib/neutron_plugins/brocade | 2 ++ lib/neutron_plugins/cisco | 2 ++ lib/neutron_plugins/embrane | 2 ++ lib/neutron_plugins/ibm | 2 ++ lib/neutron_plugins/linuxbridge_agent | 2 ++ lib/neutron_plugins/midonet | 2 ++ lib/neutron_plugins/ml2 | 2 ++ lib/neutron_plugins/nec | 2 ++ lib/neutron_plugins/nuage | 2 ++ lib/neutron_plugins/ofagent_agent | 2 ++ lib/neutron_plugins/oneconvergence | 2 ++ lib/neutron_plugins/openvswitch | 2 ++ lib/neutron_plugins/openvswitch_agent | 2 ++ lib/neutron_plugins/ovs_base | 2 ++ lib/neutron_plugins/plumgrid | 2 ++ lib/neutron_plugins/vmware_nsx | 2 ++ lib/neutron_thirdparty/bigswitch_floodlight | 2 ++ lib/neutron_thirdparty/midonet | 2 ++ lib/neutron_thirdparty/ryu | 2 ++ lib/neutron_thirdparty/trema | 2 ++ lib/neutron_thirdparty/vmware_nsx | 2 ++ lib/nova | 2 ++ lib/nova_plugins/functions-libvirt | 2 ++ lib/nova_plugins/hypervisor-fake | 2 ++ lib/nova_plugins/hypervisor-ironic | 2 ++ lib/nova_plugins/hypervisor-libvirt | 2 ++ lib/nova_plugins/hypervisor-openvz | 2 ++ lib/nova_plugins/hypervisor-vsphere | 2 ++ lib/nova_plugins/hypervisor-xenserver | 2 ++ lib/opendaylight | 2 ++ lib/oslo | 2 ++ lib/rpc_backend | 2 ++ lib/sahara | 2 ++ lib/stackforge | 2 ++ lib/swift | 2 ++ lib/tempest | 2 ++ lib/template | 2 ++ lib/tls | 2 ++ lib/trove | 2 ++ lib/zaqar | 2 ++ stackrc | 2 ++ 77 files changed, 154 insertions(+), 1 deletion(-) diff --git a/functions b/functions index bb40a481bd..d33ad8c3a0 100644 --- a/functions +++ b/functions @@ -1,3 +1,5 @@ +#!/bin/bash +# # functions - DevStack-specific functions # # The following variables are assumed to be defined by certain functions: diff --git a/functions-common b/functions-common index 24507fef91..cbfa130fd1 100644 --- a/functions-common +++ b/functions-common @@ -1,3 +1,5 @@ +#!/bin/bash +# # functions-common - Common functions used by DevStack components # # The canonical copy of this file is maintained in the DevStack repo. diff --git a/lib/apache b/lib/apache index 2c436816c3..c7d69f2ea7 100644 --- a/lib/apache +++ b/lib/apache @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/apache # Functions to control configuration and operation of apache web server diff --git a/lib/ceilometer b/lib/ceilometer index cdef422bb5..43a39dd7cb 100644 --- a/lib/ceilometer +++ b/lib/ceilometer @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/ceilometer # Install and start **Ceilometer** service diff --git a/lib/ceph b/lib/ceph index 521430626b..c2d418f49c 100644 --- a/lib/ceph +++ b/lib/ceph @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/ceph # Functions to control the configuration and operation of the **Ceph** storage service diff --git a/lib/cinder b/lib/cinder index 611e1ca5d9..930119cd61 100644 --- a/lib/cinder +++ b/lib/cinder @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/cinder # Install and start **Cinder** volume service diff --git a/lib/cinder_backends/ceph b/lib/cinder_backends/ceph index e9d2a02ad3..415ce94489 100644 --- a/lib/cinder_backends/ceph +++ b/lib/cinder_backends/ceph @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/cinder_backends/ceph # Configure the ceph backend diff --git a/lib/cinder_backends/glusterfs b/lib/cinder_backends/glusterfs index dd772a84de..00c62e04cd 100644 --- a/lib/cinder_backends/glusterfs +++ b/lib/cinder_backends/glusterfs @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/cinder_backends/glusterfs # Configure the glusterfs backend diff --git a/lib/cinder_backends/lvm b/lib/cinder_backends/lvm index 8f8ab7958e..a3ab5bf3f9 100644 --- a/lib/cinder_backends/lvm +++ b/lib/cinder_backends/lvm @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/cinder_backends/lvm # Configure the LVM backend diff --git a/lib/cinder_backends/netapp_iscsi b/lib/cinder_backends/netapp_iscsi index 7a67da7a26..be9442eb83 100644 --- a/lib/cinder_backends/netapp_iscsi +++ b/lib/cinder_backends/netapp_iscsi @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/cinder_backends/netapp_iscsi # Configure the NetApp iSCSI driver diff --git a/lib/cinder_backends/netapp_nfs b/lib/cinder_backends/netapp_nfs index d90b7f7d19..dc919ad86b 100644 --- a/lib/cinder_backends/netapp_nfs +++ b/lib/cinder_backends/netapp_nfs @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/cinder_backends/netapp_nfs # Configure the NetApp NFS driver diff --git a/lib/cinder_backends/nfs b/lib/cinder_backends/nfs index 76487884f7..fc51b2b440 100644 --- a/lib/cinder_backends/nfs +++ b/lib/cinder_backends/nfs @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/cinder_backends/nfs # Configure the nfs backend diff --git a/lib/cinder_backends/solidfire b/lib/cinder_backends/solidfire index 95ffce1ccc..7cc70fc86d 100644 --- a/lib/cinder_backends/solidfire +++ b/lib/cinder_backends/solidfire @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/cinder_backends/solidfire # Configure the solidfire driver diff --git a/lib/cinder_backends/vmdk b/lib/cinder_backends/vmdk index b32c4b2e7a..d5b945354b 100644 --- a/lib/cinder_backends/vmdk +++ b/lib/cinder_backends/vmdk @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/cinder_backends/vmdk # Configure the VMware vmdk backend diff --git a/lib/cinder_backends/xiv b/lib/cinder_backends/xiv index ee5da2d487..6eadaae93b 100644 --- a/lib/cinder_backends/xiv +++ b/lib/cinder_backends/xiv @@ -1,3 +1,5 @@ +#!/bin/bash +# # Copyright 2014 IBM Corp. # Copyright (c) 2014 OpenStack Foundation # All Rights Reserved. @@ -82,4 +84,3 @@ $XIV_XTRACE # Local variables: # mode: shell-script # End: - diff --git a/lib/cinder_plugins/XenAPINFS b/lib/cinder_plugins/XenAPINFS index fa10715bdf..f7306955cb 100644 --- a/lib/cinder_plugins/XenAPINFS +++ b/lib/cinder_plugins/XenAPINFS @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/cinder_plugins/XenAPINFS # Configure the XenAPINFS driver diff --git a/lib/cinder_plugins/glusterfs b/lib/cinder_plugins/glusterfs index b4196e4738..35ceb27ce1 100644 --- a/lib/cinder_plugins/glusterfs +++ b/lib/cinder_plugins/glusterfs @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/cinder_plugins/glusterfs # Configure the glusterfs driver diff --git a/lib/cinder_plugins/nfs b/lib/cinder_plugins/nfs index 5f4cc5369a..83b39932cf 100644 --- a/lib/cinder_plugins/nfs +++ b/lib/cinder_plugins/nfs @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/cinder_plugins/nfs # Configure the nfs driver diff --git a/lib/cinder_plugins/sheepdog b/lib/cinder_plugins/sheepdog index 30c60c6efe..ca343f708b 100644 --- a/lib/cinder_plugins/sheepdog +++ b/lib/cinder_plugins/sheepdog @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/cinder_plugins/sheepdog # Configure the sheepdog driver diff --git a/lib/cinder_plugins/vsphere b/lib/cinder_plugins/vsphere index 436b060377..f14ddf0998 100644 --- a/lib/cinder_plugins/vsphere +++ b/lib/cinder_plugins/vsphere @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/cinder_plugins/vsphere # Configure the vsphere driver diff --git a/lib/config b/lib/config index a4d032864b..c0756bf3fe 100644 --- a/lib/config +++ b/lib/config @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/config - Configuration file manipulation functions # These functions have no external dependencies and the following side-effects: diff --git a/lib/database b/lib/database index e226515347..366d2b3d2c 100644 --- a/lib/database +++ b/lib/database @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/database # Interface for interacting with different database backends diff --git a/lib/databases/mysql b/lib/databases/mysql index eab1aa400f..d39d9667fc 100644 --- a/lib/databases/mysql +++ b/lib/databases/mysql @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/databases/mysql # Functions to control the configuration and operation of the **MySQL** database backend diff --git a/lib/databases/postgresql b/lib/databases/postgresql index fb6d304180..76491c479d 100644 --- a/lib/databases/postgresql +++ b/lib/databases/postgresql @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/databases/postgresql # Functions to control the configuration and operation of the **PostgreSQL** database backend diff --git a/lib/dib b/lib/dib index 30b31ec0ee..177f4c1ef0 100644 --- a/lib/dib +++ b/lib/dib @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/dib # Install and build images with **diskimage-builder** diff --git a/lib/dstat b/lib/dstat index 4ec10dcefb..8f456a879f 100644 --- a/lib/dstat +++ b/lib/dstat @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/dstat # Functions to start and stop dstat diff --git a/lib/gantt b/lib/gantt index 485613f2cb..5bd28c2823 100644 --- a/lib/gantt +++ b/lib/gantt @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/gantt # Install and start **Gantt** scheduler service diff --git a/lib/glance b/lib/glance index b4c18f8ac7..2cffc5ef63 100644 --- a/lib/glance +++ b/lib/glance @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/glance # Functions to control the configuration and operation of the **Glance** service diff --git a/lib/heat b/lib/heat index 3ed9a5ff41..f9ac03a43d 100644 --- a/lib/heat +++ b/lib/heat @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/heat # Install and start **Heat** service diff --git a/lib/horizon b/lib/horizon index 9fd1b854c8..3f3b1ca28f 100644 --- a/lib/horizon +++ b/lib/horizon @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/horizon # Functions to control the configuration and operation of the horizon service diff --git a/lib/infra b/lib/infra index cd439e723a..57df07deed 100644 --- a/lib/infra +++ b/lib/infra @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/infra # # Functions to install infrastructure projects needed by other projects diff --git a/lib/ironic b/lib/ironic index 28f8fe87e5..6866ae77d0 100644 --- a/lib/ironic +++ b/lib/ironic @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/ironic # Functions to control the configuration and operation of the **Ironic** service diff --git a/lib/keystone b/lib/keystone index 72a79be44d..a218732aaf 100644 --- a/lib/keystone +++ b/lib/keystone @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/keystone # Functions to control the configuration and operation of **Keystone** diff --git a/lib/ldap b/lib/ldap index a6fb82f6f2..5beac38038 100644 --- a/lib/ldap +++ b/lib/ldap @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/ldap # Functions to control the installation and configuration of **ldap** diff --git a/lib/neutron b/lib/neutron index 5a2bfea801..24d7c6cf68 100644 --- a/lib/neutron +++ b/lib/neutron @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/neutron # functions - functions specific to neutron diff --git a/lib/neutron_plugins/bigswitch_floodlight b/lib/neutron_plugins/bigswitch_floodlight index 9e84f2e75a..4166131534 100644 --- a/lib/neutron_plugins/bigswitch_floodlight +++ b/lib/neutron_plugins/bigswitch_floodlight @@ -1,3 +1,5 @@ +#!/bin/bash +# # Neuton Big Switch/FloodLight plugin # ------------------------------------ diff --git a/lib/neutron_plugins/brocade b/lib/neutron_plugins/brocade index 511fb71d61..b8166d9af9 100644 --- a/lib/neutron_plugins/brocade +++ b/lib/neutron_plugins/brocade @@ -1,3 +1,5 @@ +#!/bin/bash +# # Brocade Neutron Plugin # ---------------------- diff --git a/lib/neutron_plugins/cisco b/lib/neutron_plugins/cisco index 95e0ab3368..b067aa6b11 100644 --- a/lib/neutron_plugins/cisco +++ b/lib/neutron_plugins/cisco @@ -1,3 +1,5 @@ +#!/bin/bash +# # Neutron Cisco plugin # --------------------------- diff --git a/lib/neutron_plugins/embrane b/lib/neutron_plugins/embrane index 7dafdc001f..6b4819ef70 100644 --- a/lib/neutron_plugins/embrane +++ b/lib/neutron_plugins/embrane @@ -1,3 +1,5 @@ +#!/bin/bash +# # Neutron Embrane plugin # --------------------------- diff --git a/lib/neutron_plugins/ibm b/lib/neutron_plugins/ibm index 39b00401ae..3660a9f2b9 100644 --- a/lib/neutron_plugins/ibm +++ b/lib/neutron_plugins/ibm @@ -1,3 +1,5 @@ +#!/bin/bash +# # Neutron IBM SDN-VE plugin # --------------------------- diff --git a/lib/neutron_plugins/linuxbridge_agent b/lib/neutron_plugins/linuxbridge_agent index 2638dd3725..ec17c01612 100644 --- a/lib/neutron_plugins/linuxbridge_agent +++ b/lib/neutron_plugins/linuxbridge_agent @@ -1,3 +1,5 @@ +#!/bin/bash +# # Neutron Linux Bridge L2 agent # ----------------------------- diff --git a/lib/neutron_plugins/midonet b/lib/neutron_plugins/midonet index 6ccd502d97..eb27ed63dd 100644 --- a/lib/neutron_plugins/midonet +++ b/lib/neutron_plugins/midonet @@ -1,3 +1,5 @@ +#!/bin/bash +# # Neutron MidoNet plugin # ---------------------- diff --git a/lib/neutron_plugins/ml2 b/lib/neutron_plugins/ml2 index f9a9774e98..e3b2c4dd28 100644 --- a/lib/neutron_plugins/ml2 +++ b/lib/neutron_plugins/ml2 @@ -1,3 +1,5 @@ +#!/bin/bash +# # Neutron Modular Layer 2 plugin # ------------------------------ diff --git a/lib/neutron_plugins/nec b/lib/neutron_plugins/nec index f8d98c35fe..3b1a25716a 100644 --- a/lib/neutron_plugins/nec +++ b/lib/neutron_plugins/nec @@ -1,3 +1,5 @@ +#!/bin/bash +# # Neutron NEC OpenFlow plugin # --------------------------- diff --git a/lib/neutron_plugins/nuage b/lib/neutron_plugins/nuage index 70de8fad01..7bce233853 100644 --- a/lib/neutron_plugins/nuage +++ b/lib/neutron_plugins/nuage @@ -1,3 +1,5 @@ +#!/bin/bash +# # Nuage Neutron Plugin # ---------------------- diff --git a/lib/neutron_plugins/ofagent_agent b/lib/neutron_plugins/ofagent_agent index 90b37f1be9..915badc7a0 100644 --- a/lib/neutron_plugins/ofagent_agent +++ b/lib/neutron_plugins/ofagent_agent @@ -1,3 +1,5 @@ +#!/bin/bash +# # OpenFlow Agent plugin # ---------------------- diff --git a/lib/neutron_plugins/oneconvergence b/lib/neutron_plugins/oneconvergence index 4fd8c7c48f..48a368a967 100644 --- a/lib/neutron_plugins/oneconvergence +++ b/lib/neutron_plugins/oneconvergence @@ -1,3 +1,5 @@ +#!/bin/bash +# # Neutron One Convergence plugin # ------------------------------ diff --git a/lib/neutron_plugins/openvswitch b/lib/neutron_plugins/openvswitch index 3b6567cd0a..891ab4982b 100644 --- a/lib/neutron_plugins/openvswitch +++ b/lib/neutron_plugins/openvswitch @@ -1,3 +1,5 @@ +#!/bin/bash +# # Common code used by cisco and embrane plugins # --------------------------------------------- diff --git a/lib/neutron_plugins/openvswitch_agent b/lib/neutron_plugins/openvswitch_agent index e1a6f4a47f..2ab61b0c3e 100644 --- a/lib/neutron_plugins/openvswitch_agent +++ b/lib/neutron_plugins/openvswitch_agent @@ -1,3 +1,5 @@ +#!/bin/bash +# # Neutron Open vSwitch L2 agent # ----------------------------- diff --git a/lib/neutron_plugins/ovs_base b/lib/neutron_plugins/ovs_base index 07aa7cca9b..cde5298af8 100644 --- a/lib/neutron_plugins/ovs_base +++ b/lib/neutron_plugins/ovs_base @@ -1,3 +1,5 @@ +#!/bin/bash +# # common functions for ovs based plugin # ------------------------------------- diff --git a/lib/neutron_plugins/plumgrid b/lib/neutron_plugins/plumgrid index 7950ac0605..0d711fe8b2 100644 --- a/lib/neutron_plugins/plumgrid +++ b/lib/neutron_plugins/plumgrid @@ -1,3 +1,5 @@ +#!/bin/bash +# # PLUMgrid Neutron Plugin # Edgar Magana emagana@plumgrid.com # ------------------------------------ diff --git a/lib/neutron_plugins/vmware_nsx b/lib/neutron_plugins/vmware_nsx index f4eb82d04e..4cbedd6de4 100644 --- a/lib/neutron_plugins/vmware_nsx +++ b/lib/neutron_plugins/vmware_nsx @@ -1,3 +1,5 @@ +#!/bin/bash +# # Neutron VMware NSX plugin # ------------------------- diff --git a/lib/neutron_thirdparty/bigswitch_floodlight b/lib/neutron_thirdparty/bigswitch_floodlight index 033731e27c..e3f4689fd7 100644 --- a/lib/neutron_thirdparty/bigswitch_floodlight +++ b/lib/neutron_thirdparty/bigswitch_floodlight @@ -1,3 +1,5 @@ +#!/bin/bash +# # Big Switch/FloodLight OpenFlow Controller # ------------------------------------------ diff --git a/lib/neutron_thirdparty/midonet b/lib/neutron_thirdparty/midonet index 099a66eb2d..2c82d487e4 100644 --- a/lib/neutron_thirdparty/midonet +++ b/lib/neutron_thirdparty/midonet @@ -1,3 +1,5 @@ +#!/bin/bash +# # MidoNet # ------- diff --git a/lib/neutron_thirdparty/ryu b/lib/neutron_thirdparty/ryu index eaf088b797..1f78a21fa4 100644 --- a/lib/neutron_thirdparty/ryu +++ b/lib/neutron_thirdparty/ryu @@ -1,3 +1,5 @@ +#!/bin/bash +# # Ryu SDN Framework # ----------------- diff --git a/lib/neutron_thirdparty/trema b/lib/neutron_thirdparty/trema index 3e59ef2b28..075f013ded 100644 --- a/lib/neutron_thirdparty/trema +++ b/lib/neutron_thirdparty/trema @@ -1,3 +1,5 @@ +#!/bin/bash +# # Trema Sliceable Switch # ---------------------- diff --git a/lib/neutron_thirdparty/vmware_nsx b/lib/neutron_thirdparty/vmware_nsx index 7a20c64afb..7027a29892 100644 --- a/lib/neutron_thirdparty/vmware_nsx +++ b/lib/neutron_thirdparty/vmware_nsx @@ -1,3 +1,5 @@ +#!/bin/bash +# # VMware NSX # ---------- diff --git a/lib/nova b/lib/nova index 0e6c6afcf7..ebc3db5eeb 100644 --- a/lib/nova +++ b/lib/nova @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/nova # Functions to control the configuration and operation of the **Nova** service diff --git a/lib/nova_plugins/functions-libvirt b/lib/nova_plugins/functions-libvirt index d3c4eab0aa..4601eea47b 100644 --- a/lib/nova_plugins/functions-libvirt +++ b/lib/nova_plugins/functions-libvirt @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/nova_plugins/functions-libvirt # Common libvirt configuration functions diff --git a/lib/nova_plugins/hypervisor-fake b/lib/nova_plugins/hypervisor-fake index dc93633410..3180d91f0a 100644 --- a/lib/nova_plugins/hypervisor-fake +++ b/lib/nova_plugins/hypervisor-fake @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/nova_plugins/hypervisor-fake # Configure the fake hypervisor diff --git a/lib/nova_plugins/hypervisor-ironic b/lib/nova_plugins/hypervisor-ironic index abf59b8008..4c2043b6b5 100644 --- a/lib/nova_plugins/hypervisor-ironic +++ b/lib/nova_plugins/hypervisor-ironic @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/nova_plugins/hypervisor-ironic # Configure the ironic hypervisor diff --git a/lib/nova_plugins/hypervisor-libvirt b/lib/nova_plugins/hypervisor-libvirt index 53dbfb976f..cc6f29e0f8 100644 --- a/lib/nova_plugins/hypervisor-libvirt +++ b/lib/nova_plugins/hypervisor-libvirt @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/nova_plugins/hypervisor-libvirt # Configure the libvirt hypervisor diff --git a/lib/nova_plugins/hypervisor-openvz b/lib/nova_plugins/hypervisor-openvz index a1636adf9c..cce36b8d3f 100644 --- a/lib/nova_plugins/hypervisor-openvz +++ b/lib/nova_plugins/hypervisor-openvz @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/nova_plugins/hypervisor-openvz # Configure the openvz hypervisor diff --git a/lib/nova_plugins/hypervisor-vsphere b/lib/nova_plugins/hypervisor-vsphere index 9933a3c712..c406e094f3 100644 --- a/lib/nova_plugins/hypervisor-vsphere +++ b/lib/nova_plugins/hypervisor-vsphere @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/nova_plugins/hypervisor-vsphere # Configure the vSphere hypervisor diff --git a/lib/nova_plugins/hypervisor-xenserver b/lib/nova_plugins/hypervisor-xenserver index 0dba471394..db19cc2fb6 100644 --- a/lib/nova_plugins/hypervisor-xenserver +++ b/lib/nova_plugins/hypervisor-xenserver @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/nova_plugins/hypervisor-xenserver # Configure the XenServer hypervisor diff --git a/lib/opendaylight b/lib/opendaylight index 831329a750..936a17cbed 100644 --- a/lib/opendaylight +++ b/lib/opendaylight @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/opendaylight # Functions to control the configuration and operation of the opendaylight service diff --git a/lib/oslo b/lib/oslo index d00580b14a..e0b4afebdb 100644 --- a/lib/oslo +++ b/lib/oslo @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/oslo # # Functions to install oslo libraries from git diff --git a/lib/rpc_backend b/lib/rpc_backend index 14c78fbf7b..4c1efa66cb 100644 --- a/lib/rpc_backend +++ b/lib/rpc_backend @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/rpc_backend # Interface for interactig with different rpc backend # rpc backend settings diff --git a/lib/sahara b/lib/sahara index 4f1ba22c67..c902d385d1 100644 --- a/lib/sahara +++ b/lib/sahara @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/sahara # Dependencies: diff --git a/lib/stackforge b/lib/stackforge index 2d80dad48c..cc3a689973 100644 --- a/lib/stackforge +++ b/lib/stackforge @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/stackforge # # Functions to install stackforge libraries that we depend on so diff --git a/lib/swift b/lib/swift index 9e61331404..41f9e84afa 100644 --- a/lib/swift +++ b/lib/swift @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/swift # Functions to control the configuration and operation of the **Swift** service diff --git a/lib/tempest b/lib/tempest index 46c9e26916..6894501319 100644 --- a/lib/tempest +++ b/lib/tempest @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/tempest # Install and configure Tempest diff --git a/lib/template b/lib/template index f77409bd47..2703788af4 100644 --- a/lib/template +++ b/lib/template @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/template # Functions to control the configuration and operation of the XXXX service # diff --git a/lib/tls b/lib/tls index fdb798ff30..677895b9b2 100644 --- a/lib/tls +++ b/lib/tls @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/tls # Functions to control the configuration and operation of the TLS proxy service diff --git a/lib/trove b/lib/trove index 60b2bdba22..6cc5fa8f53 100644 --- a/lib/trove +++ b/lib/trove @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/trove # Functions to control the configuration and operation of the **Trove** service diff --git a/lib/zaqar b/lib/zaqar index 22ef5ef20f..0d1f6f4aaf 100644 --- a/lib/zaqar +++ b/lib/zaqar @@ -1,3 +1,5 @@ +#!/bin/bash +# # lib/zaqar # Install and start **Zaqar** service diff --git a/stackrc b/stackrc index ac798894b8..cb01f21942 100644 --- a/stackrc +++ b/stackrc @@ -1,3 +1,5 @@ +#!/bin/bash +# # stackrc # # Find the other rc files