remove unison tmp files

This commit is contained in:
Don Harper 2015-07-02 22:38:53 -05:00
parent 236705fcdc
commit 4111a919d5
5 changed files with 1 additions and 145 deletions

1
.gitignore vendored
View file

@ -1,6 +1,7 @@
.*~
*~
.*swp
.unison*
log
cache
__pycache__

View file

@ -1,113 +0,0 @@
from __future__ import unicode_literals
import time
BLOG_AUTHOR = "Don Harper" # (translatable)
BLOG_TITLE = "duckland.org news" # (translatable)
SITE_URL = "http://www.duckland.org/"
BLOG_EMAIL = "duck@duckland.org"
BLOG_DESCRIPTION = "News from duckland.org" # (translatable)
DEFAULT_LANG = "en"
TRANSLATIONS = {
DEFAULT_LANG: "",
# Example for another language:
# "es": "./es",
}
TRANSLATIONS_PATTERN = "{path}.{lang}.{ext}"
NAVIGATION_LINKS = {
DEFAULT_LANG: (
('/index.html', 'Home'),
('/stories/about.html', 'About me'),
(
(
('http://www.donaldharper.com', 'My Photo Blog'),
('http://p365.donaldharper.com', 'My Attempt at a Project 365'),
('http://www.duckland.org', 'My Personal and Tech Blog'),
),
'My Sites'
),
(
(
('https://twitter.com/duckunix', 'My Twitter'),
('https://plus.google.com/+DonHarper/', 'My Google+'),
('http://www.linkedin.com/in/donaldharper/', 'My LinkedIN'),
),
'Social Sites'
),
("/archive.html", "Archive"),
("/categories/index.html", "Tags"),
('/rss.xml', 'RSS'),
),
}
THEME = "slate"
TIMEZONE = "CDT6CST"
DATE_FORMAT = '%Y-%m-%d'
JS_DATE_FORMAT = 'YYYY-MM-DD'
DATE_FANCINESS = 1
POSTS = (
("posts/*.rst", "posts", "post.tmpl"),
("posts/*.txt", "posts", "post.tmpl"),
("posts/*.html", "posts", "post.tmpl"),
("posts/*.wp", "posts", "post.tmpl"),
)
PAGES = (
("stories/*.rst", "stories", "story.tmpl"),
("stories/*.txt", "stories", "story.tmpl"),
)
COMPILERS = {
"rest": ('.rst', '.txt'),
"markdown": ('.md', '.mdown', '.markdown'),
"textile": ('.textile',),
"txt2tags": ('.t2t',),
"bbcode": ('.bb',),
"wiki": ('.wiki',),
"ipynb": ('.ipynb',),
"html": ('.html', '.htm', '.wp'),
"php": ('.php',),
}
SHOW_BLOG_TITLE = True
FEED_LENGTH = 10
REDIRECTIONS = []
DEPLOY_COMMANDS = {
'default': [
"chmod -R a+rX output/",
"rsync -a --delete -e 'ssh -x -i /home/don/.ssh/http -l duck' output/ duck@www:httpd/duckland.org/nikola",
]
}
INDEX_READ_MORE_LINK = '<p class="more"><a href="{link}">{read_more}...a></p>'
RSS_READ_MORE_LINK = '<p><a href="{link}">{read_more}...a> ({min_remaining_read})</p>'
LICENSE = ""
CONTENT_FOOTER = 'Contents &copy; {date} <a href="mailto:{email}">{author}</a> - Powered by <a href="http://getnikola.com" rel="nofollow">Nikola</a> {license}'
CONTENT_FOOTER_FORMATS = {
DEFAULT_LANG: (
(),
{
"email": BLOG_EMAIL,
"author": BLOG_AUTHOR,
"date": time.gmtime().tm_year,
"license": LICENSE
}
)
}
COMMENT_SYSTEM = ""
COMMENT_SYSTEM_ID = ""
FUTURE_IS_NOW = False
DEPLOY_DRAFTS = False
SCHEDULE_ALL = True
SHOW_SOURCELINK = False
COPY_SOURCES = False
INDEX_DISPLAY_POST_COUNT = 5
UNSLUGIFY_TITLES = True
LOGGING_HANDLERS = {
#'stderr': {'loglevel': 'INFO', 'bubble': True},
'smtp': {
'from_addr': 'www.duckland.org@duckland.org',
'recipients': ('duck@duckland.org'),
'server_addr': ('127.0.0.1',25),
'secure': (),
'level': 'WARNING',
'bubble': False
}
}
GLOBAL_CONTEXT = {}
GLOBAL_CONTEXT_FILLER = []
CREATE_MONTHLY_ARCHIVE = True

View file

@ -1,14 +0,0 @@
.. title: FreeBSD Challenge II, Day 14
.. slug: freebsd-challenge-ii-day-14
.. date: 2015-01-14 23:51:48 UTC-06:00
.. tags: sa,30DayChallenge,FreeBSD
.. category:
.. link:
.. description:
.. type: text
Today is day 14 (pushing day 15 at this hour), and things are looking very good. Today, I got word from the `PCBSD Project <http://www.pcbsd.org>`_ that a patch which I submitted to fix the `issue with the WiFi NIC <http://www.duckland.org/posts/201407freebsd-switch.html>`_. Well, I got notice today that `PCBSD Bug #7330 <https://bugs.freenas.org/issues/7330>`_ has been resolved, and I tested on the R810. It works!
Now, I just need to get a few things configured here first, like snapshots, backups, and porting my SDCARD reading scripts over to FreeBSD, and I should be good.
Then, fun things like configure & use IPv6. I have some FreeBSD VSP servers to test with...it will be fun!

View file

@ -1,18 +0,0 @@
.. title: FreeBSD Challenge II, Day 30 Update
.. slug: freebsd-challenge-ii-day-30-update
.. date: 2015-01-30 15:38:32 UTC-06:00
.. tags: 30DayChallenge,FreeBSD,sa
.. category:
.. link:
.. description:
.. type: text
As the month draws to a close, I am further into the switch. I have rebuilt my main laptop to `PCBSD <http://www.pcbsd.org>`_. I am still setting a few things up, but it seems to be going well.
Two things I need to fix:
- **Skype**: While there is not a native client, there are lots of folks who report success with the Linux client. I will need to do some research.
- **Nikola**: The software I use for my blogs. It throws a python error when I run it, so I cannot update things. Again, I think I just need to do some more research.
Now, the fun of the weekend is here, so I am off!