]> git.ipfire.org Git - ipfire-2.x.git/blame - src/misc-progs/timectrl.c
Merge branch 'next' of ssh://git.ipfire.org/pub/git/ipfire-2.x into next-suricata
[ipfire-2.x.git] / src / misc-progs / timectrl.c
CommitLineData
53562849
MT
1/* This file is part of the IPFire Firewall.
2 *
3 * This program is distributed under the terms of the GNU General Public
4 * Licence. See the file COPYING for details.
5 *
6 */
7
8#include <stdlib.h>
9#include <stdio.h>
10#include <string.h>
11#include <unistd.h>
12#include <sys/types.h>
13#include <fcntl.h>
14#include "setuid.h"
15
16int main(int argc, char *argv[]) {
17
18 if (!(initsetuid()))
19 exit(1);
20
21 if (argc < 2) {
22 fprintf(stderr, "\nNo argument given.\n\ntimectrl (start|stop|restart)\n\n");
23 exit(1);
24 }
25
26 if (strcmp(argv[1], "start") == 0) {
3e615c37 27 safe_system("/etc/rc.d/init.d/ntp start");
53562849 28 } else if (strcmp(argv[1], "stop") == 0) {
3e615c37 29 safe_system("/etc/rc.d/init.d/ntp stop");
53562849 30 } else if (strcmp(argv[1], "restart") == 0) {
3e615c37 31 safe_system("/etc/rc.d/init.d/ntp restart");
53562849 32 } else if (strcmp(argv[1], "enable") == 0) {
3e615c37
MT
33 safe_system("ln -fs ../init.d/ntp /etc/rc.d/rc3.d/S26ntpd >/dev/null 2>&1");
34 safe_system("ln -fs ../init.d/ntp /etc/rc.d/rc0.d/K46ntpd >/dev/null 2>&1");
35 safe_system("ln -fs ../init.d/ntp /etc/rc.d/rc6.d/K46ntpd >/dev/null 2>&1");
36 safe_system("/etc/rc.d/init.d/ntp start");
53562849 37 } else if (strcmp(argv[1], "disable") == 0) {
16260e2c 38 safe_system("/etc/rc.d/init.d/ntp stop");
3118e3a2 39 safe_system("rm -f /etc/rc.d/rc*.d/*ntpd >/dev/null 2>&1");
53562849
MT
40 } else {
41 fprintf(stderr, "\nBad argument given.\n\ntimectrl (start|stop|restart)\n\n");
42 exit(1);
43 }
44
45 return 0;
46}