- Start by creating a new LXC using Ubuntu LTS 20.04 Focal
- Uncheck the Unprilivlaged option
- All other settings as desired
- DO NOT start on task completion
- Under LXC>Options
- Nesting = 1
- NFS = 1
- Start LXC
- update and install depedancies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class TemplatesTest(TestCase): | |
| def test_templates(self): | |
| """Templates can compile properly and there's no mismatched tags""" | |
| # get app template dirs | |
| template_dirs = [] | |
| apps = [app for app in settings.INSTALLED_APPS | |
| if app.startswith('rh2')] | |
| for app in apps: | |
| mod = import_module(app) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(document).ready(function() { | |
| // Custom | |
| var stickyToggle = function(sticky, stickyWrapper, scrollElement) { | |
| var stickyHeight = sticky.outerHeight(); | |
| var stickyTop = stickyWrapper.offset().top; | |
| if (scrollElement.scrollTop() >= stickyTop){ | |
| stickyWrapper.height(stickyHeight); | |
| sticky.addClass("is-sticky"); | |
| } | |
| else{ |