This file contains 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
Running migrations for account: | |
- Migrating forwards to 0018_add_hast_user_and_group. | |
> account:0001_initial | |
> account:0002_auto__add_bsdusers__add_bsdgroups | |
> account:0003_auto__add_bsdgroupmembership__del_field_bsdusers_bsdusr_password__add_ | |
> account:0004_builtin_user_and_groups | |
- Migration 'account:0004_builtin_user_and_groups' is marked for no-dry-run. | |
Installed 29 object(s) from 1 fixture(s) | |
> account:0005_auto__add_unique_bsdgroups_bsdgrp_group | |
> account:0006_add_dbus_users |
This file contains 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
#include <stdio.h> | |
#include <stddef.h> | |
#include <sys/types.h> | |
#include <sys/queue.h> | |
#ifndef roundup | |
#define roundup(x, y) ((((x)+((y)-1))/(y))*(y) | |
#endif | |
/* |
This file contains 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
Index: dev/watchdog/watchdog.c | |
=================================================================== | |
--- dev/watchdog/watchdog.c (revision 246559) | |
+++ dev/watchdog/watchdog.c (working copy) | |
@@ -1,5 +1,8 @@ | |
/*- | |
* Copyright (c) 2004 Poul-Henning Kamp | |
+ * Copyright (c) 2013 iXsystems.com, | |
+ * author: Alfred Perlstein <[email protected]> | |
+ * |
This file contains 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
Index: subversion/include/private/svn_subst_private.h | |
=================================================================== | |
--- subversion/include/private/svn_subst_private.h (revision 0) | |
+++ subversion/include/private/svn_subst_private.h (working copy) | |
@@ -0,0 +1,68 @@ | |
+/** | |
+ * @copyright | |
+ * ==================================================================== | |
+ * Licensed to the Apache Software Foundation (ASF) under one | |
+ * or more contributor license agreements. See the NOTICE file |
This file contains 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
The purpose of this is to allow system integrators to tune their watchdogs and | |
get advanced notice if they are behaving poorly. | |
The following facilities are added: | |
- Warn if the watchdog program takes too long. | |
- Disable activation of the system watchdog so that one can test the watchdogd script | |
without potentially rebooting the system. | |
Example: |
This file contains 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
/*- | |
* Copyright (c) 2012 Alfred Perlstein <[email protected]> | |
* All rights reserved. | |
* | |
* Redistribution and use in source and binary forms, with or without | |
* modification, are permitted provided that the following conditions | |
* are met: | |
* 1. Redistributions of source code must retain the above copyright | |
* notice, this list of conditions and the following disclaimer. | |
* 2. Redistributions in binary form must reproduce the above copyright |
NewerOlder