diff options
author | Scott Moser <smoser@nelson> | 2010-01-07 21:40:44 -0500 |
---|---|---|
committer | Scott Moser <smoser@nelson> | 2010-01-07 21:40:44 -0500 |
commit | 41268c94d0f832d6a6dade0fffb7ddc0cd7a1a6c (patch) | |
tree | c578859cbdf70d38af582b00d1f81229fbee62c4 /setup.py | |
parent | 938ba376f2c7551a471991b4046e11a4f92f30d5 (diff) | |
download | vyos-cloud-init-41268c94d0f832d6a6dade0fffb7ddc0cd7a1a6c.tar.gz vyos-cloud-init-41268c94d0f832d6a6dade0fffb7ddc0cd7a1a6c.zip |
remove dead/unused code, call this 0.5.0
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 12 |
1 files changed, 3 insertions, 9 deletions
@@ -23,25 +23,19 @@ import os.path import subprocess setup(name='EC2-init', - version='0.4.999', + version='0.5.0', description='EC2 initialisation magic', author='Soren Hansen', author_email='soren@canonical.com', url='http://launchpad.net/ec2-init/', packages=['ec2init'], - scripts=['ec2-fetch-credentials.py', - 'ec2-get-info.py', - 'ec2-run-user-data.py', - 'ec2-set-defaults.py', - 'ec2-set-hostname.py', - 'ec2-wait-for-meta-data-service.py', - 'ec2-init.py', + scripts=['ec2-init.py', 'ec2-is-compat-env', 'cloud-init-run-module.py' ], data_files=[('/etc/ec2-init', ['ec2-config.cfg']), ('/etc/ec2-init/templates', glob('templates/*')), ('/etc/init', glob('upstart/*.conf')), - ('/usr/share/ec2-init', ['ec2-init-appliance-ebs-volume-mount.sh']), + ('/usr/share/ec2-init', []), ], ) |