Browse Source

Added shell script

pull/84/head
Heesu Hwang 9 years ago
parent
commit
f48ef28688
3 changed files with 10 additions and 5 deletions
  1. +0
    -5
      MakeFile
  2. +3
    -0
      octodns/provider/azuredns.py
  3. +7
    -0
      rb.txt

+ 0
- 5
MakeFile View File

@ -1,5 +0,0 @@
local-rebuild:
sudo rm -r build
sudo rm -r octodns.egg-info/
sudo python setup.py build -q
sudo python setup.py install -q

+ 3
- 0
octodns/provider/azuredns.py View File

@ -17,6 +17,9 @@ import re
from ..record import Record, Update
from .base import BaseProvider
#TODO: changes made to master include adding /build, Makefile to .gitignore and
# making Makefile.
# Only made for A records. will have to adjust for more generic params types
class _AzureRecord(object):
def __init__(self, resource_group_name, record, values=None):


+ 7
- 0
rb.txt View File

@ -0,0 +1,7 @@
#!/bin/bash
#script to rebuild octodns quickly
sudo rm -r /home/t-hehwan/GitHub/octodns/build
sudo rm -r /home/t-hehwan/GitHub/octodns/octodns.egg-info
sudo python /home/t-hehwan/GitHub/octodns/setup.py build -q
sudo python /home/t-hehwan/GitHub/octodns/setup.py install -q

Loading…
Cancel
Save